aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_22679.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/qtbug_22679.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/qtbug_22679.qml14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_22679.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_22679.qml
deleted file mode 100644
index b38a84b4c0..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_22679.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-import QtQuick 2.0
-
-QtObject {
- function accessContextProperty() {
- for (var i = 0; i < contextProp.stringProperty.length; ++i) ;
- }
-
- Component.onCompleted: {
- for (var i = 0; i < 1000; ++i)
- accessContextProperty();
- // Shouldn't cause "Illegal invocation" error.
- gc();
- }
-}