mirror of
https://github.com/github/codeql.git
synced 2026-02-28 12:53:49 +01:00
10 lines
234 B
Plaintext
10 lines
234 B
Plaintext
/**
|
|
* @name Test for exactly one body per source method
|
|
*/
|
|
import csharp
|
|
|
|
where forall(Method m | m.fromSource()
|
|
and not m.isAbstract()
|
|
and not m.isExtern() | count(m.getBody()) = 1)
|
|
select 1
|