2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / other / classkey1.C
blob33792e7f2b37c0fb2b08368308c185328039bc85
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" }