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