1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/C++Frontend/2003-09-30-ForIncrementExprBug.cpp
Chris Lattner 4c63db748c new testcase
llvm-svn: 8798
2003-09-30 21:29:27 +00:00

9 lines
61 B
C++

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