namespace Beta { void setValue(int i){}; int getValue(){ return 57; } } namespace Delta { using Beta::setValue; int getValue(){ return 112; } } namespace Epsilon = Beta;