Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist-defarg2.C
blob: 65240355fc33bc25a673afe3fde8754c071c0658 [
file
] [
log
] [
blame
]
// PR c++/82336
// { dg-do link { target c++11 } }
struct
foo
{
int
x
=
5
;
};
struct
bar
:
foo
{
bar
()
=
default
;
};
struct
baz
{
bar x
;
};
void
qux
(
baz
=
{}){}
int
main
()
{
qux
();
}