TypeScript/tests/baselines/reference/functionWithDefaultParameterWithNoStatements2.types

7 lines
309 B
Plaintext
Raw Normal View History

=== tests/cases/compiler/functionWithDefaultParameterWithNoStatements2.ts ===
function foo(x = 0) {
2015-04-13 23:01:57 +02:00
>foo : (x?: number) => void, Symbol(foo, Decl(functionWithDefaultParameterWithNoStatements2.ts, 0, 0))
>x : number, Symbol(x, Decl(functionWithDefaultParameterWithNoStatements2.ts, 0, 13))
2015-04-13 21:36:11 +02:00
>0 : number
}