aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/var.qml
blob: 617d6873d97b0c8689684499f1acea88c5a5ed68 (plain)
1
2
3
4
5
6
7
8
9
import QtQml

QtObject {
    readonly property variant x: [0]
    readonly property var y: [0]

    readonly property int lenX: x.length
    readonly property int lenY: y.length
}