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

11 lines
116 B
C++
Raw Normal View History

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