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