[Clang] Deprecate __is_referenceable (#123185)
[llvm-project.git] / clang / test / Import / for-stmt / Inputs / F.cpp
blobe93e35dd6b79bbb60349642625800875696286e7
1 void f() {
2 for (;;)
4 for (int i = 0;;)
5 continue;
6 for (; bool j = false;)
7 continue;
8 for (int i = 0; i != 0; ++i) {
9 i++;