summary refs log tree commit diff
path: root/src/test/ui/rust-2021/prelude2021.rs
blob: 3a9fd69322869518567d41a2e18f556ac1cdbc88 (plain)
1
2
3
4
5
6
7
// check-pass
// edition:2021
// compile-flags: -Zunstable-options

fn main() {
    let _: u16 = 123i32.try_into().unwrap();
}