qt6-bb10/qtdeclarative/tests/auto/qml/qqmllistreference/data/nullItems.qml

13 lines
208 B
QML

import QtQml
QtObject {
id: self
property list<QtObject> items
Component.onCompleted: {
items.push(self)
items.push(null)
items.push(self)
items[0] = null
}
}