aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/stringLength2.qml
blob: 6dc2942b37d62e9dc159d321c767e244519fedb9 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.15

Item {
    id: foo

    property string s
    Component.onCompleted: {
        console.log("s.length", foo.s.length);
    }
}