qtdeclarative/tests/auto/qml/qqmlecmascript/data/scope.3.qml

14 lines
214 B
QML

import QtQuick 2.0
import Qt.test 1.0
MyQmlObject {
id: root
property int foo: 12
property bool test1: foo == 12
property bool test2: console != 11
property bool test3: root.console == 11
}