/** * Copyright 2007-2013 IMP Inventors. All rights reserved */ #include namespace IMP { void testf(); void testf() { Ints its; std::cout << its << std::endl; } } namespace IMP { namespace sub { void testf(); void testf() { Ints its; std::cout << its << std::endl; } } } int main(int, char *[]) { using namespace IMP; Ints its; std::cout << its << std::endl; return 0; }