oxc/tasks/coverage/misc/fail/oxc-2253.ts

7 lines
145 B
TypeScript

const a? = "A"
const [b]? = ["B"]
const { c }? = { c: "C" }
const d ? = "A"
const [e, f] ? = ["B"]
const { g, h } ? = { c: "C" }