blob: 845f74b1aae0ae7a1bd7afa37cf4bacc26890817 [file] [log] [blame]
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
}