comparison gcc/testsuite/g++.dg/cpp0x/constexpr-template5.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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 "" }