TypeScript/tests/cases/compiler/functionWithDefaultParameterWithNoStatements16.ts

6 lines
76 B
TypeScript

var v: any[];
function foo(a = bar()) { }
function bar(a = foo()) {
}