aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/listProperties.qml
blob: dcfe37d6fc56b311e7f1abc7191d741ef270a66f (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0

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

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