* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr65072.C
blobb8fa8885dcff77f19f5307f4cc71e644c313e3ec
1 // PR c++/65075
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-Wno-pedantic" }
5 template <typename> class C
7   struct
8   {
9     int i;
10   };
11   auto operator*(const C m) -> decltype (m.i);
13 void fn1 (const C<float>);
14 C<float> a;