blob: 6127dcd6b0b9d971f6bea9ed42a1655be2eacbe0 [file] [log] [blame]
// { dg-do compile }
// { dg-options "-O -std=c++11 -g -dA -gno-strict-dwarf" }
// { dg-final { scan-assembler-times "0x1\[ \t\]\[^\n\]* DW_AT_defaulted" 1 } }
struct Foo
{
Foo () = default;
};
void
bar ()
{
Foo foo;
}