aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/declaredPropertyValues.qml
blob: 03f5c1ff7ef4b2afe9e7d5e537b977258939dab5 (plain)
1
2
3
4
5
6
7
8
import QtQuick 2.0

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