aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/propertyNecromancy.qml
blob: 86c4965f620226b2741e0b749d638439267f83a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick

Item {
    id: base
    Item {
        id: inner
        Item {
            id: child
            anchors.fill: {
                base.notified = parent;
                return parent;
            }
        }
    }

    property var notified
    Component.onCompleted: inner.destroy()
}