Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
inh-ctor24.C
blob: 7c1fae0cfc7d3e8bbba4d5ead353a0b96c6d19bb [
file
] [
log
] [
blame
]
// PR c++/78767
// { dg-do compile { target c++11 } }
template
<
class
T
>
struct
A
{
template
<
class
U
>
A
(
U
,
U
=
42
);
};
struct
B
:
A
<int>
{
using
A
::
A
;
};
B b
(
24
);