* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-42.C
blob09a75e45a3de331f4b84667828edfac6905497f3
1 // PR c++/59200
2 // { dg-do compile { target c++11 } }
4 struct A
6   static constexpr bool value = true;
7 };
9 template<typename T>
10 struct B
12   template<typename U>
13     using C = A;
16 template<typename T>
17 template<typename U>
18   const bool B<T>::C<U>::value;  // { dg-error "too many" }