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

Item {
    id: root
    component IC: SimpleItem {
       width: i
       Rectangle {
           id: rect
           color: "lime"
       }
       property alias color: rect.color
    }
    width: 200
    IC {
        objectName: "icInstance"
    }
}