1 // { dg-do compile { target { c++11 && { ! c++14 } } } }
2 
3 template<typename CharT, CharT... String>
4   int
5   operator"" _script()
6   { return 42; } // { dg-error "literal operator template|has invalid parameter list" }
7 
8 int i = "hi!"_script;
9