prettier/tests/flow/spread/test4.js

5 lines
77 B
JavaScript

/* @flow */
function test(...nums: Array<number>) {}
test(0, ...[1, 2, 3]);