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