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

using Foo::bar;

main() {
  return bar();
}