aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/Wunused-var-18.C
blob: 0339663721ce1c900d70c0628bebd3ed35fb9647 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Origin: PR c++/29028
// { dg-options "-Wunused" }
// { dg-do compile }

namespace N
{
    int i; // { dg-warning "unused variable" }
}

void
f ()
{
    using N::i;
}