Files
codeql/csharp/ql/test/library-tests/csharp11/nativeInt.ql
2024-04-09 10:31:48 +02:00

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()