qt6-bb10/qtdeclarative/tests/auto/qml/qqmlengine/data/bindingInstallUseAfterFree.qml

20 lines
246 B
QML

import QtQuick
Item {
visible: false
property int test: 1
Component {
id: comp
Item {
width: { width = test * 100 }
}
}
Loader {
sourceComponent: comp
width: 100
}
}