summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/rv9p.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/cpp0x/rv9p.C')
-rw-r--r--gcc/testsuite/g++.dg/cpp0x/rv9p.C22
1 files changed, 22 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/cpp0x/rv9p.C b/gcc/testsuite/g++.dg/cpp0x/rv9p.C
new file mode 100644
index 000000000..ec08a8248
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp0x/rv9p.C
@@ -0,0 +1,22 @@
+// PR c++/36744
+// { dg-options "-std=c++0x" }
+// { dg-do run }
+
+struct S
+{
+ S(): i(2) {}
+ S(S const&s): i(s.i) {}
+ int i;
+};
+
+void f(S x) { x.i = 0; }
+
+extern "C" void abort (void);
+int main()
+{
+ S y;
+ f(static_cast<S&&>(y));
+ if (y.i != 2)
+ abort ();
+ return 0;
+}