aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/valueTypeLists.qml
blob: 83325641ab031d303cd4013558b054139221ce8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQml

QtObject {
    property list<rect> rectList: [ Qt.rect(1,2,3,4), Qt.rect(5,6,7,8), Qt.rect(9,10,11,12) ]
    property list<string> stringList: ["aaa", "bbb", "ccc"]
    property list<int> intList: [5, 6, 7, 8]

    property var rectInBounds: rectList[0]
    property var rectOutOfBounds: rectList[32]
    property var stringInBounds: stringList[1]
    property var stringOutOfBounds: stringList[33]
    property var intInBounds: intList[2]
    property var intOutOfBounds: intList[34]
}