3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 28 Feb 2002 <nathan@codesourcery.com>
6 // PR 775. Some mismatches which were broken.
8 template <class T> struct A {};
9 union A<int> a; // { dg-error "'union' tag" "" }
11 template <> union A<float> {}; // { dg-error "'union' tag" "" }
14 union B b; // { dg-error "'union' tag" "" }
17 class C c; // { dg-error "'class' tag" "" }