* g++.dg/cpp1y/udlit-char-template-neg.C: Expect the error on a
different line. Check the column number too.
From-SVN: r271530
+2019-05-22 Marek Polacek <polacek@redhat.com>
+
+ * g++.dg/cpp1y/udlit-char-template-neg.C: Expect the error on a
+ different line. Check the column number too.
+
2019-05-22 Uroš Bizjak <ubizjak@gmail.com>
* gcc.target/i386/vect-signbitf.c (dg-final): Improve
template<typename CharT, CharT... String>
int
- operator"" _script()
- { return 42; } // { dg-error "literal operator template|has invalid parameter list" }
+ operator"" _script() // { dg-error "3:literal operator template" }
+ { return 42; }
int i = "hi!"_script;