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