We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Example with cost_err:
cost_err
fn main() { #[allow(const_err)] let _x = 42 / 0; }
#[allow(const_err)] fn main() { let _x = 42 / 0; }
Expected: the same. Actual: warning in the first case.