mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
7 lines
221 B
Plaintext
7 lines
221 B
Plaintext
import default
|
|
import semmle.code.java.dataflow.DefUse
|
|
|
|
from VarRead u1, VarRead u2, Variable v
|
|
where useUsePair(u1, u2) and u1.getVariable() = v
|
|
select v, u1.getLocation().getStartLine(), u2.getLocation().getStartLine()
|