aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/t37.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/t37.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/t37.C17
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/t37.C b/gcc/testsuite/g++.old-deja/g++.pt/t37.C
deleted file mode 100644
index 434dadd8228..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/t37.C
+++ /dev/null
@@ -1,17 +0,0 @@
-// Build don't link:
-
-class A {
-public:
- A(int); // ERROR - referenced below
- A(float); // ERROR - referenced below
- ~A();
-}; // ERROR - synthesized copy ctor
-
-A::A() { // ERROR -
-}
-
-A::A(int) {
-}
-
-A::~A() {
-}