diff options
Diffstat (limited to 'test/FrontendC++/2003-09-30-ForIncrementExprBug.cpp')
-rw-r--r-- | test/FrontendC++/2003-09-30-ForIncrementExprBug.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/FrontendC++/2003-09-30-ForIncrementExprBug.cpp b/test/FrontendC++/2003-09-30-ForIncrementExprBug.cpp new file mode 100644 index 0000000..63f62f2 --- /dev/null +++ b/test/FrontendC++/2003-09-30-ForIncrementExprBug.cpp @@ -0,0 +1,10 @@ +// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null + +struct C {}; + +C &foo(); + +void foox() { + for (; ; foo()); +} + |