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

using Foo::bar;

int main() {
  return bar();
}