blob: 3a74f7d1c767be43952c63d60ce9aea2ccfe4815 [file] [log] [blame]
// PR c++/13377
// Origin: Volker Reichelt <reichelt@igpm.rwth-aachen.de>
// { dg-do compile }
namespace N
{
int i; // { dg-error "i" }
}
int i; // { dg-error "i" }
using namespace N;
void foo() { i; } // { dg-error "ambiguous" }