aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/deleteLater.qml
blob: 2a9ce44b20d133637e6ec6048468007a757f48c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

QtObject {
    id: root
    property bool test: false

    Component.onCompleted: {
        try {
            root.deleteLater()
        } catch(e) {
            test = true;
        }
    }
}