File indexing completed on 2024-05-12 05:41:12

0001 #include <QtCore/QString>
0002 
0003 void test()
0004 {
0005     QLatin1String s1("é"); // Warn
0006     QLatin1String s2("e"); // OK
0007     QLatin1String s3(""); // OK
0008     QLatin1String s4(s1); // OK
0009 }