aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/qobjectConnectionListExceptionHandling.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/qobjectConnectionListExceptionHandling.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/qobjectConnectionListExceptionHandling.qml24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qobjectConnectionListExceptionHandling.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qobjectConnectionListExceptionHandling.qml
deleted file mode 100644
index acd512a2be..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/qobjectConnectionListExceptionHandling.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import QtQuick 2.0
-
-Item {
- id: root
- property int first: 5
- property bool test: false
-
- Item {
- id: exceptional
- function exceptionalFunction() {
- var obj = undefined;
- var prop = undefined;
- return obj[prop];
- }
- }
-
- Component.onCompleted: {
- root["firstChanged"].connect(exceptional.exceptionalFunction);
- root["firstChanged"].connect(exceptional.exceptionalFunction);
- root["firstChanged"].connect(exceptional.exceptionalFunction);
- first = 6;
- test = true;
- }
-}