llvm-6502/test/C++Frontend/2003-09-30-ForIncrementExprBug2.cpp
2003-09-30 21:31:25 +00:00

11 lines
87 B
C++

// Test with an opaque type
struct C;
C &foo();
void foox() {
for (; ; foo());
}