OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / classkey1.C
1 // { dg-do compile }
2
3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 28 Feb 2002 <nathan@codesourcery.com>
5
6 // PR 775. Some mismatches which were broken.
7
8 template <class T> struct A {};
9 union A<int> a; // { dg-error "'union' tag" "" }
10
11 template <> union A<float> {}; // { dg-error "'union' tag" "" }
12
13 struct B {};
14 union B b;      // { dg-error "'union' tag" "" }
15
16 union C {};
17 class C c;      // { dg-error "'class' tag" "" }