summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2010-06-25 03:22:08 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2010-06-25 03:22:08 (GMT)
commit5272bfe03522e671e832a8cbd9e5b2d4d71a18f2 (patch)
tree815d008b71de7ac5f381745f1d399ca4f0441626 /tests/auto/declarative/qdeclarativeecmascript/data
parent2426502f372f1c1a33ccaba3549dc0eda2a754de (diff)
downloadQt-5272bfe03522e671e832a8cbd9e5b2d4d71a18f2.zip
Qt-5272bfe03522e671e832a8cbd9e5b2d4d71a18f2.tar.gz
Qt-5272bfe03522e671e832a8cbd9e5b2d4d71a18f2.tar.bz2
Fix assert
QTBUG-11600
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/qtbug_11600.js1
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/qtbug_11600.qml8
2 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_11600.js b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_11600.js
new file mode 100644
index 0000000..092bc2b
--- /dev/null
+++ b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_11600.js
@@ -0,0 +1 @@
+;
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_11600.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_11600.qml
new file mode 100644
index 0000000..56e7885
--- /dev/null
+++ b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_11600.qml
@@ -0,0 +1,8 @@
+import Qt 4.7
+import "qtbug_11600.js" as Test
+
+QtObject {
+ id: goo
+
+ property bool test: undefined == goo.Test.foo
+}