]> git.lizzy.rs Git - rust.git/blob - src/test/ui/numbers-arithmetic/saturating-float-casts.rs
Merge commit '4c41a222ca5d1325fb4b6709395bd06e766cc042' into clippyup
[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 }