aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelistreference/data/variantToList.qml
blob: 39a49e81fe4e0f8898cf80f8884660fa6e78d340 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 1.0

QtObject {
    property list<QtObject> myList;
    myList: QtObject {}

    property variant value: myList
    property int test: value.length
}