no need to keep around this output.
[oota-llvm.git] / test / C++Frontend / 2003-09-30-ForIncrementExprBug2.cpp
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3 // Test with an opaque type
4
5 struct C;
6
7 C &foo();
8
9 void foox() {
10   for (; ; foo());
11 }
12