TypeScript/tests/cases/compiler/crashInEmitTokenWithComment.ts

7 lines
147 B
TypeScript
Raw Normal View History

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