TypeScript/tests/baselines/reference/parseErrorDoubleCommaInCall.types

13 lines
213 B
Plaintext

=== tests/cases/compiler/parseErrorDoubleCommaInCall.ts ===
Boolean({
>Boolean({ x: 0,,}) : boolean
>Boolean : BooleanConstructor
>{ x: 0,,} : { x: number; }
x: 0,,
>x : number
>0 : 0
});