* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr69637-1.C
blobb8c22ebc8698fdbf2ed8f5359eee3ce29a1740a3
1 // { dg-do compile { target c++11 } }
3 template <class T>
4 int foo () { return 1; }
6 struct B {
7     unsigned c: foo;  // { dg-error "non-integral type" }
8 };