aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/scope.3.qml
blob: 9add81809ca4549fe2c662a0e9f86f30e36e8fd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
}