mirror of
https://github.com/github/codeql.git
synced 2026-03-22 15:36:48 +01:00
8 lines
146 B
Plaintext
8 lines
146 B
Plaintext
/**
|
|
* @name Test for well-formed whiles
|
|
*/
|
|
import csharp
|
|
|
|
where forall(WhileStmt s | exists(s.getCondition()) and exists(s.getBody()))
|
|
select 1
|