aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lookup/ambig5.C
blob: fb48ff3c8aca3958e4105e5bc8edba07e77e70b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/13377
// Origin: Boris Kolpackov <boris@kolpackov.net>
// { dg-do compile }

namespace N
{
  namespace M {}    // { dg-message "M" }
}

namespace M {}      // { dg-message "M" }

using namespace N;
using namespace M;  // { dg-error "namespace-name|ambiguous" }