* g++.dg/debug/pr71432.C: Fail on AIX.
[official-gcc.git] / gcc / testsuite / g++.dg / debug / const2.C
blob8e98f8b195ea8e8a4a8eb84f0b48c6adbd14a8ea
1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 1 Apr 2005 <nathan@codesourcery.com>
4 // { dg-options "-ggdb2" }
5 // Origin: ivan <ivanr@syncad.com>
6 //         pinskia@gcc.gnu.org
7 // Bug 20505: ICE with -ggdb2
9 struct b
11   static const int d;
12   virtual bool IsEmpty() const=0;
13   int e,c;
15 const int b::d = ((__SIZE_TYPE__)(&((b*)1)->c) - 1);