aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlcomponent/data/RecursiveComponent.qml
blob: eec17a772d622dc221cec927c51a83b73947c44a (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0

Item {
    id: inner
    property Item innermost: null

    Component.onCompleted: {
        innermost = Qt.createComponent("./RecursiveComponent.qml").createObject();
    }
}