diff options
Diffstat (limited to 'test/FrontendC++/2003-09-22-CompositeExprValue.cpp')
-rw-r--r-- | test/FrontendC++/2003-09-22-CompositeExprValue.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/FrontendC++/2003-09-22-CompositeExprValue.cpp b/test/FrontendC++/2003-09-22-CompositeExprValue.cpp deleted file mode 100644 index 3bd707e..0000000 --- a/test/FrontendC++/2003-09-22-CompositeExprValue.cpp +++ /dev/null @@ -1,11 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null - -struct duration { - duration operator/=(int c) { - return *this; - } -}; - -void a000090() { - duration() /= 1; -} |