ns1.C   [plain text]


// { dg-do run  }
namespace Foo {
  int bar() {
    return 0;
  }
}

using namespace Foo;

int main() {
  bar();
}