2 // { dg-do compile { target c++11 } }
4 template <const char *const C, typename T>
10 extern constexpr char HELLO_WORLD[] = "hello world";
12 A<HELLO_WORLD, B> g; // <-- This works fine
15 using PartiallySpecialized = A<HELLO_WORLD, T>; // <-- This fails