Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
local4.C
blob: 492ce2b7e7079a756e53114f233b8be18e510f21 [
file
] [
log
] [
blame
]
// { dg-do run }
// Test that a local declaration of one of a global overload set works
int
f
()
{
return
0
;
}
int
f
(
int
);
int
main
()
{
int
f
();
// { dg-warning "empty parentheses" }
return
f
();
}