aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlcontext/data/evalAfterInvalidate.qml
blob: 27879c48bf7fbf25777a94207532ced1d9871bc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Rectangle {
    id: root

    Component.onCompleted: {
        var i = containerComponent.createObject(root);
        contentComponent.createObject(i);
        i.destroy()
    }

    property Component containerComponent: ContainerComponent {}
    property Component contentComponent: ContentComponent {}
}