Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
inh-ctor37.C
blob: d501c5b97c1b68315ae308c7b539619421625499 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
// PR 78488, seg fault with inherited ctor
struct
Foo
{
Foo
()
{}
};
struct
Bar
:
Foo
{
using
Foo
::
Foo
;
Bar
(
void
*);
};
int
main
()
{
Bar
f
;
}