blob: 0339663721ce1c900d70c0628bebd3ed35fb9647 [file] [log] [blame]
// Origin: PR c++/29028
// { dg-options "-Wunused" }
// { dg-do compile }
namespace N
{
int i; // { dg-warning "unused variable" }
}
void
f ()
{
using N::i;
}