`s` cannot be null or undefined below. So I think it is appropriate to error when trying to unwrap. ``` ts let s: string; id = ''; if (s!) { // should throw an error } ```