Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / deleteLater.qml
1 import QtQuick 2.0
2
3 QtObject {
4     id: root
5     property bool test: false
6
7     Component.onCompleted: {
8         try {
9             root.deleteLater()
10         } catch(e) {
11             test = true;
12         }
13     }
14 }