(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1y/
udlit-char-template-neg.C
// { dg-do compile { target { c++11 && { ! c++14 } } } }

template<typename CharT, CharT... String>
  int
  operator"" _script() // { dg-error "3:literal operator template" }
  { return 42; }

int i = "hi!"_script;