mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
11 lines
258 B
Plaintext
11 lines
258 B
Plaintext
import csharp
|
|
|
|
from LocalVariable v1, LocalVariable v2, Type t
|
|
where
|
|
v1.getFile().getStem() = "NativeInt" and
|
|
v2.getFile().getStem() = "NativeInt" and
|
|
t = v1.getType() and
|
|
t = v2.getType() and
|
|
v1 != v2
|
|
select v1, v2, t.getFullyQualifiedNameDebug()
|