mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
13 lines
387 B
Plaintext
13 lines
387 B
Plaintext
import csharp
|
|
import semmle.code.csharp.commons.QualifiedName
|
|
|
|
from LocalVariable v1, LocalVariable v2, Type t, string qualifier, string name
|
|
where
|
|
v1.getFile().getStem() = "NativeInt" and
|
|
v2.getFile().getStem() = "NativeInt" and
|
|
t = v1.getType() and
|
|
t = v2.getType() and
|
|
t.hasFullyQualifiedName(qualifier, name) and
|
|
v1 != v2
|
|
select v1, v2, getQualifiedName(qualifier, name)
|