* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / auto43.C
blob45a827553d067238cacca9e705f0cb48fc26bb44
1 // PR c++/59114
2 // { dg-do compile { target c++11 } }
4 template<int> struct A
6   template<typename T> operator T();
7 };
9 void foo()
11   A<0>().operator auto();  // { dg-error "invalid use of .auto" }