mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 04:01:39 +03:00
bb544ba2f5
**Related issue:** - Closes https://github.com/swc-project/swc/issues/6405.
8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
export const fn = ()=>{
|
|
let val;
|
|
if (!!val) {
|
|
if (val.a?.b !== !0) throw Error('second');
|
|
return val;
|
|
}
|
|
};
|