]> git.proxmox.com Git - rustc.git/blob - src/test/ui/lint/force-warn/force-deny-by-default-lint.rs
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / ui / lint / force-warn / force-deny-by-default-lint.rs
1 // compile-flags: --force-warns const_err -Zunstable-options
2 // check-pass
3
4 const C: i32 = 1 / 0;
5 //~^ WARN any use of this value will cause an error
6 //~| WARN this was previously accepted by the compiler
7
8 fn main() {}