2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2020-04-19 11:53:51 -04:00
|
|
|
//@ compile-flags:-Zmir-opt-level=0
|
2017-10-09 02:14:00 +02:00
|
|
|
|
2018-03-17 11:46:31 -05:00
|
|
|
#![feature(test, stmt_expr_attributes)]
|
2017-10-09 02:14:00 +02:00
|
|
|
#![deny(overflowing_literals)]
|
|
|
|
|
|
2020-06-30 21:44:44 +02:00
|
|
|
#[path = "saturating-float-casts-impl.rs"]
|
|
|
|
|
mod implementation;
|
2020-04-18 18:43:08 -04:00
|
|
|
|
2017-10-09 02:14:00 +02:00
|
|
|
pub fn main() {
|
2020-06-30 21:44:44 +02:00
|
|
|
implementation::run();
|
2017-10-09 02:14:00 +02:00
|
|
|
}
|