xref: /llvm-project/clang/test/Import/while-stmt/Inputs/F.cpp (revision 2fd6e45e67e9ae523b5b321205eee19f248565c8)

f()1 void f() {
2   while (false)
3     ;
4   while (false) {
5   }
6   while (bool ini = true)
7     ;
8 }
9