TypeScript/tests/baselines/reference/functionWithDefaultParameterWithNoStatements2.types

7 lines
160 B
Plaintext
Raw Normal View History

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