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

Item {
    id: root

    property var item: child
    Item { id: child }

    property bool test1: child == child
    property bool test2: child.parent == root
    property bool test3: root != child
    property bool test4: item == child
    property bool test5: item != root
}