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

Item {
    id: root

    property RecursiveComponent myInner: RecursiveComponent {}
    property bool success: false

    Component.onCompleted: {
        success = (myInner.innermost != null)
    }
}