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

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
}