aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/g++.dg/cpp0x/pr48453.C22
2 files changed, 27 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index c489b28..585c912 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2015-03-20 Paolo Carlini <paolo.carlini@oracle.com>
+
+ PR c++/48453
+ * g++.dg/cpp0x/pr48453.C: New.
+
2015-03-20 Marek Polacek <polacek@redhat.com>
PR c++/65072
diff --git a/gcc/testsuite/g++.dg/cpp0x/pr48453.C b/gcc/testsuite/g++.dg/cpp0x/pr48453.C
new file mode 100644
index 0000000..b0c3da5
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp0x/pr48453.C
@@ -0,0 +1,22 @@
+// PR c++/48453, DR 1287
+// { dg-do compile { target c++11 } }
+
+template<class T>
+T&& create();
+
+template<class T, class Arg>
+void test() {
+ T t(create<Arg>());
+ (void) t;
+}
+
+template<class T>
+struct To {
+ explicit operator T();
+};
+
+int main()
+{
+ test<int&, To<int&>>();
+ test<int&&, To<int&&>>();
+}