Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
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
);
}