summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/declaredPropertyValues.qml
blob: c2418610d24bb4b4ba7480ee990069ab07eb188e (plain)
1
2
3
4
5
6
7
8
import Qt 4.7

QtObject {
    property int a: 10
    property int b: 10 + a
    property QtObject c: QtObject {}
    property list<QtObject> d: [ QtObject {}, QtObject {} ]
}