aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/inlineComponentUser1.qml
blob: 8968a20112037ccc589b4698f1365f45f32cdbbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.14

Item {
    width: 600
    height: 480
    property InlineComponentProvider.StyledRectangle myProp: InlineComponentProvider.StyledRectangle {}
    InlineComponentProvider.StyledRectangle {
        objectName: "icInstance"
        anchors.centerIn: parent
        color: "blue"
    }

}