summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/other/classkey1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/other/classkey1.C')
-rw-r--r--gcc/testsuite/g++.dg/other/classkey1.C17
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/other/classkey1.C b/gcc/testsuite/g++.dg/other/classkey1.C
new file mode 100644
index 000000000..80ab6756c
--- /dev/null
+++ b/gcc/testsuite/g++.dg/other/classkey1.C
@@ -0,0 +1,17 @@
+// { dg-do compile }
+
+// Copyright (C) 2002 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 28 Feb 2002 <nathan@codesourcery.com>
+
+// PR 775. Some mismatches which were broken.
+
+template <class T> struct A {};
+union A<int> a; // { dg-error "'union' tag" "" }
+
+template <> union A<float> {}; // { dg-error "'union' tag" "" }
+
+struct B {};
+union B b; // { dg-error "'union' tag" "" }
+
+union C {};
+class C c; // { dg-error "'class' tag" "" }