]> git.lizzy.rs Git - rust.git/blob - tests/ui/numbers-arithmetic/saturating-float-casts.rs
Rollup merge of #106644 - alexcrichton:update-wasi-toolchain, r=cuviper
[rust.git] / tests / 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 }