2018-02-09 Sebastian Perta <sebastian.perta@renesas.com>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / init9.C
blobe22821022463c00a495792cf292f0b31cce2d780
1 // { dg-do assemble  }
2 // GROUPS passed initialization
3 int FALSE = 0;
4 class X {
5 public:
6   static int FALSE;
7 };
9 // The compiler should NOT complain about redeclaration of the global
10 // `FALSE' with this declaration...grokvardecl shouldn't be doing that.
11 int X::FALSE = 0;