Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
inh-ctor18.C
blob: 05735559a72ed996578786e92a423f5c12e1a15d [
file
] [
log
] [
blame
]
// PR c++/56358
// { dg-do compile { target c++11 } }
struct
foo
{
explicit
foo
(
int
)
{}
};
template
<
typename
T
>
struct
bar
:
T
{
using
T
::
T
;
// Bad
explicit
bar
():
T
(
0
)
{}
void
baz
()
{
// Also bad
using
qux
=
T
;
}
};
bar
<foo>
b
,
b2
(
42
);