From 2101ccc496595a2e667bfe75aa5e0ace6798ab55 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Wed, 29 Jul 1998 09:37:47 -0400 Subject: [PATCH] duplicate From-SVN: r21470 --- .../g++.old-deja/g++.other/partspec1.C | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 gcc/testsuite/g++.old-deja/g++.other/partspec1.C diff --git a/gcc/testsuite/g++.old-deja/g++.other/partspec1.C b/gcc/testsuite/g++.old-deja/g++.other/partspec1.C deleted file mode 100644 index 99485347b94c..000000000000 --- a/gcc/testsuite/g++.old-deja/g++.other/partspec1.C +++ /dev/null @@ -1,23 +0,0 @@ -// Build don't link: -// Tests partial specialization -template struct foo1 {}; -template struct foo1; -foo1 bar1; -foo1 baz1; // ERROR - incomplete type - -template struct foo2 {}; -template struct foo2; -foo2 bar2; -foo2 baz2; // ERROR - incomplete type - -typedef unsigned int other1_t; -template struct foo3 {}; -template struct foo3; -foo3 bar3; -foo3 baz3; // ERROR - incomplete type - XFAIL *-*-* - -typedef int other2_t; -template struct foo4 {}; -template struct foo4; -foo4 bar4; -foo4 baz4; // ERROR - incomplete type - XFAIL *-*-* -- 2.47.2