TypeScript/tests/baselines/reference/functionWithDefaultParameterWithNoStatements5.js

11 lines
209 B
JavaScript
Raw Normal View History

//// [functionWithDefaultParameterWithNoStatements5.ts]
function foo(a = 0) { }
function bar(a = 0) {
}
//// [functionWithDefaultParameterWithNoStatements5.js]
function foo(a) { }
function bar(a) {
}