* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / auto30.C
blobcce67d55605c957d141518b6952066187047ccef
1 // Origin PR c++/51473
2 // { dg-do compile { target c++11 } }
4 struct A
6     auto friend struct B; // { dg-error "multiple types|can only be specified|friend" }
7 };
9 auto int; // { dg-error "multiple types|can only be specified for variables" }