llvm/clang/test/Import/while-stmt/Inputs/F.cpp

void f() {
  while (false)
    ;
  while (false) {
  }
  while (bool ini = true)
    ;
}