* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-61.C
blob670d91a158ce6e65e3371427fa495d6292df32b3
1 // PR c++/83714
2 // { dg-do compile { target c++11 } }
4 class a {
5   typedef int b;
6   operator b();
7 };
8 struct c {
9   using d = a;
11 using e = c;
13 template <class T>
14 e f(T) {
15   return e::d {};               // { dg-error "could not convert" }