aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/outOfBounds.qml
blob: 085e2ebd534c189b77c5d68fa57fb8effea30476 (plain)
1
2
3
4
5
6
7
8
pragma Strict
import QtQuick

Item {
    property var oob: children[12]
    property QtObject oob2: children[123]
    Component.onCompleted: console.log("oob", children[11])
}