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-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());
}