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

QtObject {
    component View: QtObject {
        default property Component delegate
    }

    component Things : QtObject {
        property QtObject view: View { delegate: QtObject {} }
    }

    component Delegated : View {
        delegate: QtObject {}
    }

    property Things things: Things {}
    property Delegated delegated: Delegated {}
}