2021-08-18 04:05:59 -05:00
|
|
|
// --force-warn $LINT causes $LINT (which is deny-by-default) to warn
|
|
|
|
// despite $LINT being allowed on command line
|
2021-11-03 22:00:00 -05:00
|
|
|
// compile-flags: -A const_err --force-warn const_err
|
2021-08-18 04:05:59 -05:00
|
|
|
// check-pass
|
|
|
|
|
|
|
|
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() {}
|