Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
pr5310.C
blob: 48a60062f1bf807b06d0f77c2755689cf33fe6b9 [
file
] [
log
] [
blame
]
// PR 5310
// { dg-do compile }
// { dg-options "-pedantic -Wall -Wextra -Wpointer-arith -Wconversion" }
void
foo
(
int
);
void
foo
(
long
);
void
bar
()
{
foo
((
int
)
__null
);
foo
((
long
)
__null
);
}