aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/splice.qml
blob: 71225097d5a5500b999d8bc16e3508bf69296008 (plain)
1
2
3
4
5
6
7
import QtQml

QtObject {
    property list<int> intList: [0, 1, 2, 3]
    property list<int> spliced
    Component.onCompleted: spliced = intList.splice(2)
}