Files
codeql/csharp/ql/test/library-tests/statements/Block1.ql
2018-12-20 10:19:59 +01:00

16 lines
218 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