Sign in
rust
/
rust
/
a0f398e89df9767c93c81cd58d44fdba071258a8
/
.
/
tests
/
ui
/
inference
/
untyped-primitives.rs
blob: 8515ca79903fc0538a908a1d0604ad1a2e8b5d79 [
file
] [
log
] [
blame
]
//@ check-pass
// issue: rust-lang/rust#123824
// This test is a sanity check and does not enforce any stable API, so may be
// removed at a future point.
fn
main
()
{
let
x
=
f32
::
from
(
3.14
);
let
y
=
f64
::
from
(
3.14
);
}