2 /* { dg-require-iconv "IBM1047" } */
3 /* { dg-options "-fexec-charset=IBM1047 -std=c++11" } */
5 /* When turning 123_test into an operator invocation the literal 123
6 needs to be translated to the execution character set. Failing to
7 do so results in a link error since '1', '2', and '3' in the
8 specialization will be translated as string literals. */
10 template <char... p> void q();
11 template <> void q<'1','2','3'>() {}
13 template <char... p> void operator""_test() { q<p...> (); }