]> git.lizzy.rs Git - rust.git/blob - src/test/ui/numbers-arithmetic/saturating-float-casts.rs
Merge commit 'c19edfd71a1d0ddef86c2c67fdb40718d40a72b4' into sync_cg_clif-2022-07-25
[rust.git] / src / test / ui / numbers-arithmetic / saturating-float-casts.rs
1 // run-pass
2 // compile-flags:-Zmir-opt-level=0
3
4 #![feature(test, stmt_expr_attributes)]
5 #![deny(overflowing_literals)]
6
7 #[path = "saturating-float-casts-impl.rs"]
8 mod implementation;
9
10 pub fn main() {
11     implementation::run();
12 }