Files
codeql/csharp/ql/test/library-tests/statements/Using1.ql

13 lines
150 B
Plaintext

/**
* @name Test for usings
*/
import csharp
where
forall(UsingBlockStmt s |
exists(s.getAnExpr()) and
exists(s.getBody())
)
select 1