1import {foo} from './esm-dep.mjs';
2
3const obj = {
4  a: {
5    b: 22
6  }
7};
8
9if (obj?.a?.b === 22) throw Error('an exception');
10