mirror of
https://github.com/github/codeql.git
synced 2026-02-24 19:03:50 +01:00
13 lines
181 B
Plaintext
13 lines
181 B
Plaintext
/**
|
|
* @name Test for methods
|
|
*/
|
|
import csharp
|
|
|
|
from Method s
|
|
where s.hasName("Divide")
|
|
and s.isStatic()
|
|
and s.isPublic()
|
|
and s.getReturnType() instanceof VoidType
|
|
select s
|
|
|