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

Item {
    id: root
    component IC: SimpleItem {
       id: root
       width: root.i
       property color color: "red"
    }
    width: 200
    IC {
        objectName: "icInstance"
    }
}