Spot the incompatibility between the `null` and `undefined` types.
let value: null = undefined; console.log(value);
What is the bug in this code?