TypeScript/tests/baselines/reference/parserParameterList15.js

7 lines
136 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [parserParameterList15.ts]
function foo(a = 4);
function foo(a, b) {}
//// [parserParameterList15.js]
function foo(a, b) { }