aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/namespace-alias-1.C
blob: 4b443359a61e553ab74faacb7adc41b5ca8b3a25 (plain)
1
2
3
4
5
6
7
// PR c++/26155

namespace N
{
  namespace M = N;  // { dg-message "previous declaration" }
  namespace M {}    // { dg-error "declaration of namespace" }
}