Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / ambig4.C
blob1f3daa1e5e4442fd103f6e48a3da10e8eba4e15f
1 // PR c++/13377
2 // Origin: Volker Reichelt <reichelt@igpm.rwth-aachen.de>
3 // { dg-do compile }
5 namespace N
7   int i;            // { dg-message "i" }
10 int i;              // { dg-message "i" }
12 using namespace N;
14 void foo() { i; }   // { dg-error "ambiguous" }