qt6-bb10/qtdeclarative/tests/auto/qml/qmltc_qprocess/data/inlineComponentInvalidAlias...

12 lines
271 B
QML

import QtQuick 2.15
// tests that inline components get their own context
Item {
id: root
property string hello: "hello"
component MyComponent: Item {
property alias myHello: root.hello // not allowed: accessing stuff from outside component
}
}