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