I tried this code: ```rust #![crate_type = "lib"] pub fn foo(x: i32) -> i32 { x << 33 } ``` I am building in debug mode on [the playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=f4aeb4486b7625ef37fe9e2d4bc25ca8). I expected to see this happen: it should warn about the exceeding bitshift (like it does in release mode). Instead, this happened: there is no warning, ### Meta Possibly related to https://github.com/rust-lang/rust/issues/69021