aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcachegen/data/inlineComponentWithId.qml
blob: ef9a157e5e551a26932826f954b2559116152d30 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.15

Item {
  component Test: Item {
    id: test
    property int t: 42
    Component.onCompleted: console.info(test.t)
  }
  Test {}
}