qtdeclarative/tests/auto/qml/qmlcppcodegen/data/callWithSpread.qml

10 lines
167 B
QML

import QtQml
QtObject {
Component.onCompleted: {
let f = console.error;
const data = [f, ["That is great!"]]
data[0](...data[1]);
}
}