qt6-bb10/qtdeclarative/tests/benchmarks/qml/librarymetrics_performance/data/expression.3.qml

15 lines
195 B
QML

import QtQuick 2.0
Item {
property int a: 5
property int b: 0
function someFunc() {
b += a;
}
Component.onCompleted: {
onAChanged.connect(someFunc)
}
}