aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlcomponent/data/nestedBoundComponent.qml
blob: 9ea18c6f9e2366696b5923d79d69825ed9be8ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
pragma ComponentBehavior: Bound

import QtQml

QtObject {
    property Component c: QtObject {
        objectName: "bound"
    }

    property QtObject o: c.createObject()
}