mirror of
https://github.com/github/codeql.git
synced 2026-03-23 16:06:47 +01: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
|
|
|