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