* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / decltype11.C
blob9fa8e230fcb12d7c9cd38450c24c58fd63e4f11d
1 // PR c++/35316
2 // { dg-do compile { target c++11 } }
4 template<int> struct A
6   int i : 2;
8   void foo()
9   {
10     decltype(i) j;
11   }