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

12 lines
211 B
QML

import AttachedProperties 1.0
QtObject {
id: root
TestType.object: QtObject {
property int progress: 42
}
Component.onCompleted: {
console.log(TestType.object.progress);
}
}