Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativelistreference / data / engineTypes.qml
1 import QtQuick 1.0
2
3 QtObject {
4     property list<MyType> myList
5
6     myList: [ MyType { a: 1 },
7               MyType { a: 9 } ]
8
9 }