[gcn] mkoffload.cc: Print fatal error if -march has no multilib but generic has
[gcc.git] / gcc / testsuite / g++.dg / debug / dwarf2 / explicit-constructor.C
blob894b20047ce0a27b4b4322d6864786d572b7044b
1 // Contributed by Dodji Seketeli <dodji@redhat.com>
2 // Origin: PR c++
3 // { dg-do compile }
4 // { dg-options "-O -gdwarf-2 -dA -gno-strict-dwarf -fno-debug-types-section" }
5 // { dg-final { scan-assembler-times "DW_AT_explicit" 2 } }
7 struct Foo
9   Foo () {}
10   explicit Foo (int) {}
11   Foo (char) {}
12   ~Foo () {};
15 void
16 bar ()
18   Foo foo;