* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-30.C
blob7ad5e6d83d42227d34821b073b29ff5ea718ff37
1 // Origin PR c++/55311
2 // { dg-do compile { target c++11 } }
4 template <const char *const C, typename T>
5 struct A
6 {};
8 struct B {};
10 extern constexpr char HELLO_WORLD[] = "hello world";
12 A<HELLO_WORLD, B> g; // <-- This works fine
14 template <typename T>
15 using PartiallySpecialized = A<HELLO_WORLD, T>;  // <-- This fails