qt6-bb10/qtdeclarative/tests/auto/qml/qmlformat/data/arrowFunctionWithBinding.qml

9 lines
172 B
QML

import QtQuick
Item { Component.onCompleted: { let f = ([]) => {};
let g = ([a]) => {};
let h = ([a, b]) => {};
let i = ([a, ...b]) => {};
}
}