]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/issue-64059.rs
Merge commit 'cd4810de42c57b64b74dae09c530a4c3a41f87b9' into libgccjit-codegen
[rust.git] / src / test / ui / consts / issue-64059.rs
1 // revisions: noopt opt opt_with_overflow_checks
2 //[noopt]compile-flags: -C opt-level=0
3 //[opt]compile-flags: -O
4 //[opt_with_overflow_checks]compile-flags: -C overflow-checks=on -O
5
6 // run-pass
7
8 fn main() {
9     let _ = -(-0.0);
10 }