llvm-6502/test/C++Frontend/2003-09-30-ForIncrementExprBug.cpp
Chris Lattner b51a25617d new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8798 91177308-0d34-0410-b5e6-96231b3b80d8
2003-09-30 21:29:27 +00:00

9 lines
61 B
C++

struct C {};
C &foo();
void foox() {
for (; ; foo());
}