TypeScript/tests/cases/compiler/crashInEmitTokenWithComment.ts
2020-01-31 10:41:09 -08:00

7 lines
147 B
TypeScript

// @noTypesAndSymbols: true
// GH#32358
const fn = (param: string) => undefined;
const foo = {bar: 'a'};
fn(({[foo.bar]: c}) => undefined);