new testcase
[oota-llvm.git] / test / C++Frontend / 2003-09-30-ForIncrementExprBug.cpp
1 struct C {};
2
3 C &foo();
4
5 void foox() {
6   for (; ; foo());
7 }
8