XFAIL g++.dg/debug/dwarf2/nested-4.C on Solaris with Sun as
[official-gcc.git] / gcc / testsuite / g++.dg / debug / dwarf2 / nested-4.C
blob188e1ca10e8bd39dfbe60a376549e12421cbbb5c
1 // PR debug/53235
2 // { dg-options "-gdwarf-4 -fdebug-types-section" }
3 // { dg-final { scan-assembler-times "debug_types" 2 { xfail { *-*-darwin* || { *-*-solaris2.1[1-9]* && { ! gas } } } } } }
5 namespace E {
6   class O {};
7   void f (O o) {}
9 namespace F {
10   class O {};
11   void f (O fo) {}
13 E::O eo;
14 int main () {}