mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
231 B
Rust
12 lines
231 B
Rust
//@ run-pass
|
|
//@ compile-flags:-Zmir-opt-level=0
|
|
|
|
#![feature(test, stmt_expr_attributes)]
|
|
#![deny(overflowing_literals)]
|
|
|
|
#[path = "saturating-float-casts-impl.rs"]
|
|
mod implementation;
|
|
|
|
pub fn main() {
|
|
implementation::run();
|
|
}
|