40c9c87ae1e093be9de5c1e44a1caca82af84df3
[oota-llvm.git] / 2003-09-30-ForIncrementExprBug.cpp
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3 struct C {};
4
5 C &foo();
6
7 void foox() {
8   for (; ; foo());
9 }
10