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