2020-02-19 04:25:41 -06:00
|
|
|
//@ revisions: noopt opt opt_with_overflow_checks
|
2020-02-15 03:51:51 -06:00
|
|
|
//@[noopt]compile-flags: -C opt-level=0
|
|
|
|
//@[opt]compile-flags: -O
|
|
|
|
//@[opt_with_overflow_checks]compile-flags: -C overflow-checks=on -O
|
|
|
|
|
2019-09-01 13:40:35 -05:00
|
|
|
//@ run-pass
|
|
|
|
|
2019-09-01 08:05:50 -05:00
|
|
|
fn main() {
|
|
|
|
let _ = -(-0.0);
|
|
|
|
}
|