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