swc/crates/swc_ecma_parser/tests/tsc/optionalChainingInArrow.ts

7 lines
188 B
TypeScript

// @target: es5
// @noTypesAndSymbols: true
// https://github.com/microsoft/TypeScript/issues/41814
const test = (names: string[]) =>
// single-line comment
names?.filter(x => x);