Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
numbers-arithmetic
/
saturating-float-casts.rs
blob: 3a1af09d2d423363b113b963dc9727109bb25cd0 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ compile-flags:-Zmir-opt-level=0
#![
feature
(
test
,
stmt_expr_attributes
)]
#![
deny
(
overflowing_literals
)]
#[
path
=
"saturating-float-casts-impl.rs"
]
mod
implementation
;
pub
fn
main
()
{
implementation
::
run
();
}