Fix initializers to match
[oota-llvm.git] / test / C++Frontend / 2003-09-30-ForIncrementExprBug2.cpp
1 // Test with an opaque type
2
3 struct C;
4
5 C &foo();
6
7 void foox() {
8   for (; ; foo());
9 }
10