Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nullptr34.C
blob: 2fc70a1dd969ecb5e75416818ade386d06bacfe8 [
file
] [
log
] [
blame
]
// PR c++/67216
// { dg-do compile { target c++11 } }
struct
s
{
s
(
long
)
{}
};
struct
t
{
t
(
void
*
)
{}
};
void
foo
(
s
)
{}
void
foo
(
t
)
{}
int
main
()
{
foo
(
false
);
}