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

25 lines
350 B
QML

import QtQml
QtObject {
function evil({
hello = "world",
x = 42
}, [n = 42, m = 43, o = 44], {
destructuring,
is = {
a,
lot,
of
},
fun = 42
} = {
destructuring: 123,
is: {
x: 123
},
fun: 456
}) {
}
}