Clang Project
clang_source_code
/
test
/
Import
/
while-stmt
/
Inputs
/
F.cpp
1
void f() {
2
while (false)
3
;
4
while (false) {
5
}
6
while (bool ini = true)
7
;
8
}
9