aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/inh-ctor6.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/inh-ctor6.C')
-rw-r--r--gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/inh-ctor6.C15
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/inh-ctor6.C b/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/inh-ctor6.C
deleted file mode 100644
index 5ac88d6b7..000000000
--- a/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/inh-ctor6.C
+++ /dev/null
@@ -1,15 +0,0 @@
-// { dg-options "-std=c++11" }
-
-extern "C" int printf (const char *, ...);
-template< class T >
-struct D : T {
- using T::T;
- // declares all constructors from class T
- ~D() { printf ("Destroying wrapper\n"); }
-};
-
-struct A {
- A(int);
-};
-
-D<A> d(42);