aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/declaredPropertyValues.qml
blob: f15373f1dd87a585631ba8f3027eb515b35c068c (plain)
1
2
3
4
5
6
7
8
import QtQuick 1.0

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