Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativevaluetypes / data / deletedObject.qml
1 import Test 1.0
2 import QtQuick 1.0
3 import "deletedObject.js" as JS
4
5 MyTypeObject {
6     property variant object
7
8     object: MyTypeObject {}
9     Component.onCompleted: JS.startup()
10     onRunScript: JS.afterDelete()
11 }