TypeScript/tests/baselines/reference/parserParameterList12.types

5 lines
146 B
Text

=== tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList12.ts ===
function F(a,) {
>F : (a: any) => void
>a : any
}