// foo.cpp
#include "scope-1.h"

Foo::Foo()
{
}

Foo::Foo(std::istream& is)
{
}

Foo::~Foo()
{
}

void Foo::member_function()
{
    Foo::Age age;
    // Also valid, since we are inside the Foo scope.
    Age age;
}