aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllistreference/data/engineTypes.qml
blob: 99a61a76800c64436b005d02a2bbfae3f66a0f8d (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0

QtObject {
    property list<MyType> myList

    myList: [ MyType { a: 1 },
              MyType { a: 9 } ]

}