Files
codeql/csharp/ql/test/library-tests/statements/Block1.ql
2018-08-02 17:53:23 +01:00

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