Warning, file /sdk/clazy/tests/empty-qstringliteral/main.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #include <QtCore/QObject>
0002 #include <QtCore/QString>
0003 #include "ui_qstringliteral.h" // OK
0004 void test()
0005 {
0006     QStringLiteral("foo");
0007     QStringLiteral("");
0008     QStringLiteral();
0009 
0010     if ("foo" == QStringLiteral()) {}
0011 }