Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
inh-ctor27.C
blob: ef2ada17d516de67352045f99e96ab283e58d435 [
file
] [
log
] [
blame
]
// PR c++/70844
// { dg-options -Wuseless-cast }
// { dg-do compile { target c++11 } }
struct
base
{
base
(
int
const
&);
};
struct
derived
:
public
base
{
using
base
::
base
;
};
derived d
(
0
);