mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
10 lines
235 B
Rust
10 lines
235 B
Rust
//@ revisions: noopt opt opt_with_overflow_checks
|
|
//@[noopt]compile-flags: -C opt-level=0
|
|
//@[opt]compile-flags: -O
|
|
//@[opt_with_overflow_checks]compile-flags: -C overflow-checks=on -O
|
|
|
|
//@ run-pass
|
|
|
|
fn main() {
|
|
let _ = -(-0.0);
|
|
}
|