No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / other / classkey1.C
blob80ab6756c7f4c5f7005678ca6188f56b6bc3e352
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" "" }