Deprecate some C++ extensions
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / anon4.C
blobe6ed91b77cadb236866c99164265f069891382ce
1 // { dg-do assemble  }
3 // Copyright (C) 1999 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 20 May 1999 <nathan@acm.org>
6 // Anon unions cannot have user defined member functions
7 // [class.union/2].  Make sure we spot that.
10 struct A
12   union
13   {
14     void bad(); // { dg-error "public non-static data member" }
15   };