aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/setPropertyOnNull.qml
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-11-12 11:01:06 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-15 13:07:11 +0100
commitd8fe3dfde9c6f73c49c8e69b41d77710f8dc463a (patch)
tree3fe77c80da6c254eebb5ba0718239ae10eaf4ba7 /tests/auto/qml/qqmlecmascript/data/setPropertyOnNull.qml
parenta82f89da2ad59c6ae5f83cbf35ecfaa6a56de2a4 (diff)
Don't crash when trying to assign to null.prop
Fixes a regression introduced during the exception handling refactoring. Task-number: QTBUG-34544 Change-Id: Ib751274d759030db3e5d3b1380b30dc07ec85f83 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'tests/auto/qml/qqmlecmascript/data/setPropertyOnNull.qml')
-rw-r--r--tests/auto/qml/qqmlecmascript/data/setPropertyOnNull.qml5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmlecmascript/data/setPropertyOnNull.qml b/tests/auto/qml/qqmlecmascript/data/setPropertyOnNull.qml
new file mode 100644
index 0000000000..a3288f47d7
--- /dev/null
+++ b/tests/auto/qml/qqmlecmascript/data/setPropertyOnNull.qml
@@ -0,0 +1,5 @@
+import QtQuick 2.2
+
+QtObject {
+ Component.onCompleted: null.bug = 0
+}