aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/ns1.C
blob: c347d2d93a4520df9cd1f35a106f6b6d09dc243b (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Foo {
  int bar() {
    return 0;
  }
}

using namespace Foo;

int main() {
  bar();
}