aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/ambig4.C
blob: 02e39b80f0cea246785aad3f7077fd4e5d82826a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/20293

namespace hide { // { dg-message "hide" }
  int k;
}

namespace {
  int i; 
  namespace hide { // { dg-message "hide" }
    int j; 
  }
}

void F(int) {}

int main() {
  F(hide::j); // { dg-error "ambiguous" }
}