about summary refs log tree commit diff
path: root/tests/ui/inference/untyped-primitives.rs
blob: 8515ca79903fc0538a908a1d0604ad1a2e8b5d79 (plain)
1
2
3
4
5
6
7
8
9
//@ 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);
}