Rename QDeclarative symbols to QQuick and QQml
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / qtbug_22464.qml
1 import QtQuick 2.0
2
3 QtObject {
4     property alias value: inner.value
5     property bool test: false
6
7     property variant dummy: QtObject {
8         id: inner
9         property variant value: Qt.rgba(1, 1, 0, 1);
10     }
11
12     Component.onCompleted: {
13         test = (value == Qt.rgba(1, 1, 0, 1));
14     }
15 }