aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/callWithSpread.qml
blob: 3d7f79d68d1db3a7879ad35d57ce3c234cfb002d (plain)
1
2
3
4
5
6
7
8
9
import QtQml

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