1 // PR c++/54946
2 // { dg-do compile { target c++11 } }
3 
4 template<const char*s>    static void testfunc();
5 constexpr struct testtype { const char* str; } test = { "abc"} ;
6 void (*functionpointer)() = testfunc<(const char*) test.str>; // { dg-error "" }
7