Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativevaluetypes / data / autoBindingRemoval.qml
1 import Test 1.0
2
3 MyTypeObject {
4     property int value: 10
5     rect.x: value
6
7     onRunScript: { rect.x = 42; }
8 }
9