Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / OnDestructionComponent.qml
1 import QtQuick 2.0
2 import Qt.test 1.0 as ModApi
3
4 Item {
5     id: sec
6
7     property int a: 10
8     Component.onDestruction: ModApi.setSpecificProperty(sec, "a", 20);
9 }