Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativelanguage / data / simpleBindings.qml
1 import Test 1.0
2 MyTypeObject {
3     id: me
4     property int v1: 10
5     property int v2: 11
6
7     property int value1
8     property int value2
9     property int value3
10     property int value4
11
12     value1: v1
13     value2: me.v1
14     value3: v1 + v2
15     value4: Math.min(v1, v2)
16
17     objectProperty: me
18 }