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

using namespace Foo; // ERROR - using not implemented

main() {
  bar();
}