mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
212 B
Rust
13 lines
212 B
Rust
// run-pass
|
|
|
|
#![allow(unused_must_use)]
|
|
|
|
use std::convert::TryFrom;
|
|
use std::num::TryFromIntError;
|
|
|
|
fn main() {
|
|
let x: u32 = 125;
|
|
let y: Result<u8, TryFromIntError> = u8::try_from(x);
|
|
y == Ok(125);
|
|
}
|