summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmllanguage/data/declaredPropertyValues.qml
blob: 3987a3cacd7fd3f502697462948306471bb7ad89 (plain)
1
2
3
4
5
6
7
8
import Qt 4.6

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