mirror of
https://github.com/github/codeql.git
synced 2026-04-25 08:45:14 +02:00
9 lines
192 B
Plaintext
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()
|