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

7 lines
84 B
TypeScript

// @strict: true
declare function f(): string | undefined;
let gg = f() ?? 'foo'