Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
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
();
}