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

5 lines
98 B
TypeScript
Raw Normal View History

declare const a: { x: () => void }
declare const b: { x?: () => void }
const c = { ...a, ...b };