Inputs: ``` const b = { val: 2}; const a = { val: 1, next: b }; test(a, false); test(b, false); ```
Inputs: