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

11 lines
184 B
QML

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