summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/listProperties.qml
blob: 1f60951d30069954877f191d0b6a522c8647562e (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 1.0

QtObject {
    property list<QtObject> listProperty
    property int test: listProperty.length

    listProperty: [ QtObject{}, QtObject {} ]
}