We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#[allow(arithmetic_overflow)] <1> fn main() { let (a, b) = (200, 200); let c: u8 = a + b; <2> println!("200 + 200 = {}", c); }
In this source code, there are two marks <1>/<2> the author might forget to comment, making the rustc reject to compile it
<1>/<2>