qtdeclarative/tests/auto/qml/qmllint/data/WithStatement.qml

14 lines
194 B
QML

import QtQuick 2.0
Item {
Item {
id: target
property int test: 42
}
Component.onCompleted: {
with(target) {
console.log(test);
}
}
}