aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/rv9p.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/g++.dg/cpp0x/rv9p.C')
-rw-r--r--gcc-4.9/gcc/testsuite/g++.dg/cpp0x/rv9p.C21
1 files changed, 21 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/rv9p.C b/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/rv9p.C
new file mode 100644
index 0000000..a221f32
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/rv9p.C
@@ -0,0 +1,21 @@
+// PR c++/36744
+// { dg-do run { target c++11 } }
+
+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;
+}