* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / decltype20.C
blob5fb35404288bffad3379da17329b9537d6999c80
1 // PR c++/42277
2 // { dg-do compile { target c++11 } }
4 struct S { int s; };
5 template <int N>
6 void foo ()
8   S s;
9   decltype (s.s) i;