aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/qqmldataDestroyed.qml
blob: 84308ec46e6fccdcab0855f2b86124ee0364e788 (plain)
1
2
3
4
5
6
7
8
import QtQuick 2.0

Item {
    Component.onCompleted: {
        var c = Qt.createComponent("QQmlDataDestroyedComponent.qml")
        var o = c.createObject(null); // JS ownership
    }
}