summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/10101-issue_574.cpp
blob: e34762ec00b006ff00786dd0ba2850e9bc836981 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class A
{
// crash (two parameter, 2nd string parameter has space)
    void check(const QObject *object, const QStringList &strList = QStringList(QString(QLatin1String("one two"))));
// no crash (two parameter, 2nd string parameter has no space)
    void check(const QObject *object, const QStringList &strList = QStringList(QString(QLatin1String("one"))));
// no crash (removed QLatin1String)
    void check(const QObject *object, const QStringList &strList = QStringList(QString(("one two"))));
// no crash (removed QString(QLatin1String))
    void check(const QObject *object, const QStringList &strList = QStringList());
// no crash (removed 1st parameter only)
    void check(const QStringList &strList = QStringList(QString(QLatin1String("one two"))));
};