summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/scope.3.qml
blob: 4395ba33067983136addce813d8e99e74e2a800a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.7

Item {
    id: root

    property int foo: 12
    property int console: 11

    property bool test1: foo == 12
    property bool test2: console != 11
    property bool test3: root.console == 11
}