// --force-warn $LINT causes $LINT (which is deny-by-default) to warn // despite $LINT being allowed in module // compile-flags: --force-warn const_err // check-pass #![allow(const_err)] const C: i32 = 1 / 0; //~^ WARN any use of this value will cause an error //~| WARN this was previously accepted by the compiler fn main() {}