TypeScript/tests/cases/compiler/trailingSeparatorInFunctionCall.ts
2014-07-12 17:30:19 -07:00

9 lines
No EOL
85 B
TypeScript

function f(x, y) {
}
f(1, 2, );
function f2<T>(x: T, y: T) {
}
f2(1, 2, );