aboutsummaryrefslogtreecommitdiffstats
path: root/tests/empty-qstringliteral/main.cpp
blob: 0429205ef60a9c9345d00567df3064b517b18fc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <QtCore/QObject>
#include <QtCore/QString>

void test()
{
    QStringLiteral("foo");
    QStringLiteral("");
    QStringLiteral();

    if ("foo" == QStringLiteral()) {}
}