Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / tryStatement.2.qml
1 import Qt.test 1.0
2
3 MyQmlObject {
4     property int defaultValue: 123
5
6     function go() {
7         return 321
8     }
9
10     value: try { go() } catch(e) { defaultValue }
11 }