aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/arrowFunctionWithBinding.formatted.qml
blob: ac4cf978816f1b67e84cbae15c0f70767b8e9f7d (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick

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