QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativelanguage / data / valueTypes.qml
1 import Test 1.0
2 MyTypeObject {
3     rectProperty.x: 10
4     rectProperty.y: 11
5     rectProperty.width: rectProperty.x + 2
6     rectProperty.height: 13
7
8     intProperty: rectProperty.x
9
10     onAction: { var a = rectProperty; a.x = 12; }
11
12     rectProperty2: rectProperty
13 }