aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/inlineComponentUser5.qml
blob: 150d0c2ded3ac1cbab4ad48478f4101f30be3a23 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.15

Item {
    width: 600
    height: 480
    property var test: InlineComponentProvider3.StyledRectangle {
        objectName: "icInstance"
        anchors.centerIn: parent
    }

}