blob: 40f5b7cfe2592db4e1826bd852ab0dc983093fa4 [file] [log] [blame]
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();
}