mirror of
https://github.com/github/codeql.git
synced 2026-04-28 10:15:14 +02:00
11 lines
162 B
Plaintext
11 lines
162 B
Plaintext
/**
|
|
* @name Test for base access
|
|
*/
|
|
import csharp
|
|
|
|
from Method m, BaseAccess e
|
|
where m.hasName("OtherAccesses")
|
|
and e.getEnclosingCallable() = m
|
|
select m, e
|
|
|