TypeScript/tests/baselines/reference/functionWithDefaultParameterWithNoStatements1.types

7 lines
161 B
Plaintext
Raw Normal View History

=== tests/cases/compiler/functionWithDefaultParameterWithNoStatements1.ts ===
function foo(x = 0) { }
>foo : (x?: number) => void
>x : number
2015-04-13 21:36:11 +02:00
>0 : number