aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_22464.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/qtbug_22464.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/qtbug_22464.qml15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_22464.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_22464.qml
deleted file mode 100644
index 19f26736f1..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_22464.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-import QtQuick 2.0
-
-QtObject {
- property alias value: inner.value
- property bool test: false
-
- property variant dummy: QtObject {
- id: inner
- property variant value: Qt.rgba(1, 1, 0, 1);
- }
-
- Component.onCompleted: {
- test = (value == Qt.rgba(1, 1, 0, 1));
- }
-}