aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml')
-rw-r--r--tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml b/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml
deleted file mode 100644
index 11fb9d9578..0000000000
--- a/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import Test 1.0
-import QtQuick 2.0
-
-MyQmlObject {
- property int a: Math.max(10, 9)
- property int b: 11
- Component.onDestruction: console.log("Destruction " + a + " " + b);
-}