aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/decl3.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.other/decl3.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/decl3.C19
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/decl3.C b/gcc/testsuite/g++.old-deja/g++.other/decl3.C
deleted file mode 100644
index 6068e3105dc..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.other/decl3.C
+++ /dev/null
@@ -1,19 +0,0 @@
-// Build don't link:
-
-// Origin: Adapted by Nathan Sidwell 29 Apr 1999 <nathan@acm.org>
-// from a test case submitted by Corey Kosak <kosak@cs.cmu.edu>
-// http://egcs.cygnus.com/ml/egcs-bugs/1999-04/msg00502.html
-
-// We should not allow arrays of abstract type. [class.abstract/2]
-
-struct cow_t {
- virtual void f()=0; // ERROR - abstract
-};
-
-
-int main()
-{
- cow_t cow[2]; // ERROR - abstract class
- cow[0].f();
- return 0;
-}