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

Item {
    Item {
        component StyledRectangle: Rectangle {
            width: 24
            height: 24
            color: "red"
        }
    }
}