aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml
deleted file mode 100644
index c44acf4fd1..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-import QtQuick 2.0
-
-QtObject {
- id: root
-
- property variant a: 10
- property int x: 10
- property int test: a.x
-
- Component.onCompleted: {
- a = 11;
- a = root;
- }
-}