* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / using-enum-1.C
blob9904d59aaaa90398dffdab2acabc9a461636af7e
1 // PR c++/60265
2 // { dg-do compile { target c++11 } }
4 namespace A
6   enum E { V };
8   using E::V;
11 void foo()
13   using A::E::V;
16 using A::E::V;
18 enum F { U };
20 using F::U;