Files
codeql/csharp/ql/test/library-tests/implements/Implements.ql
2025-01-15 13:08:07 +01:00

9 lines
192 B
Plaintext

import csharp
from Overridable o1, Overridable o2
where
o1.overridesOrImplements(o2) and
o1.fromSource() and
o2.fromSource()
select o1, o1.getDeclaringType(), o2, o2.getDeclaringType()