diff options
Diffstat (limited to 'test/FrontendC++/2003-09-30-CommaExprBug.cpp')
-rw-r--r-- | test/FrontendC++/2003-09-30-CommaExprBug.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/FrontendC++/2003-09-30-CommaExprBug.cpp b/test/FrontendC++/2003-09-30-CommaExprBug.cpp deleted file mode 100644 index 365795d..0000000 --- a/test/FrontendC++/2003-09-30-CommaExprBug.cpp +++ /dev/null @@ -1,10 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null - -class Empty {}; - -void foo(Empty E); - -void bar() { - foo(Empty()); -} - |