aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/propertyVar.8.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/propertyVar.8.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/propertyVar.8.qml12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/propertyVar.8.qml b/tests/auto/declarative/qdeclarativeecmascript/data/propertyVar.8.qml
deleted file mode 100644
index a9f73db402..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/propertyVar.8.qml
+++ /dev/null
@@ -1,12 +0,0 @@
-import QtQuick 2.0
-
-Item {
- property bool test: false
-
- property var literalValue: 6
-
- Component.onCompleted: {
- if (literalValue != 6) return;
- test = true;
- }
-}