Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.ext
/
null1.C
blob: 6bbfe7e473661ad8b260c58935851f7c38b1c87f [
file
] [
log
] [
blame
]
// { dg-do run }
// Test for overloading with g++ NULL.
void
f
(
int
*)
{
}
void
f
(
char
,
char
);
int
main
()
{
f
(
__null
);
}