aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lookup/ambig4.C
blob: 1f3daa1e5e4442fd103f6e48a3da10e8eba4e15f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/13377
// Origin: Volker Reichelt <reichelt@igpm.rwth-aachen.de>
// { dg-do compile }

namespace N
{
  int i;            // { dg-message "i" }
}

int i;              // { dg-message "i" }

using namespace N;

void foo() { i; }   // { dg-error "ambiguous" }