2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / other / classkey1.C
blob17fb54065d0256701d93a00078b16f07d7264ec5
1 // { dg-do compile }
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" "" }
13 struct B {};
14 union B b;      // { dg-error "`union' tag" "" }
16 union C {};
17 class C c;      // { dg-error "`class' tag" "" }