]> git.lizzy.rs Git - rust.git/blob - src/test/ui/numbers-arithmetic/saturating-float-casts.rs
Rollup merge of #102016 - lcnr:given-OutlivesEnvironment, r=jackh726
[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 }