llvm-project/llvm/test/FrontendC++/2003-09-30-ForIncrementExpr...

11 lines
113 B
C++
Raw Normal View History

// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
2004-11-07 06:29:57 +08:00
2003-10-01 05:29:27 +08:00
struct C {};
C &foo();
void foox() {
for (; ; foo());
}