Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.ns
/
ns12.C
blob: c5468914f110807ca8a93e2e0148028fb9364f5f [
file
] [
log
] [
blame
]
// { dg-do run }
namespace
fred
{
int
barney
();
extern
int
wilma
;
}
int
fred
::
barney
()
{
return
fred
::
wilma
;
}
int
fred
::
wilma
;
int
barney
()
{
return
1
;
}
int
main
()
{
return
fred
::
barney
();
}