* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / inline-ns9.C
blob555adb0c9b1c5d9eaf994909a19d100c550a237b
1 // PR c++/33486
3 // { dg-options "" }
5 namespace A
7   inline namespace B
8   {
9     struct T
10     {
11       struct U { };
12       U f();
13     };
14   }
16   inline namespace C
17   {
18     void g (T::U);
19   }
22 int main()
24   A::T t;
25   g(t.f());