TypeScript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements9.ts

4 lines
71 B
TypeScript
Raw Normal View History

function foo(a = console.log) { }
function bar(a = console.log) {
}