aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/regress/ctor1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/regress/ctor1.C')
-rw-r--r--gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/regress/ctor1.C21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/regress/ctor1.C b/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/regress/ctor1.C
deleted file mode 100644
index c35d6011f..000000000
--- a/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/regress/ctor1.C
+++ /dev/null
@@ -1,21 +0,0 @@
-// PR c++/49569
-// { dg-options -std=c++0x }
-
-struct A
-{
- virtual void f() = 0;
-};
-
-struct B: A
-{
- int i;
- virtual void f() { }
-};
-
-struct C
-{
- B b;
- C(): b() { }
- C(const B& b): b(b) { }
-};
-