aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/objectsCompareAsEqual.qml
blob: 845f74b1aae0ae7a1bd7afa37cf4bacc26890817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

Item {
    id: root

    property variant 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
}