diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-06-25 03:22:08 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-06-25 03:22:08 (GMT) |
commit | 5272bfe03522e671e832a8cbd9e5b2d4d71a18f2 (patch) | |
tree | 815d008b71de7ac5f381745f1d399ca4f0441626 /tests/auto/declarative/qdeclarativeecmascript/data | |
parent | 2426502f372f1c1a33ccaba3549dc0eda2a754de (diff) | |
download | Qt-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.js | 1 | ||||
-rw-r--r-- | tests/auto/declarative/qdeclarativeecmascript/data/qtbug_11600.qml | 8 |
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 +} |