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.
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.