1
0
Fork 0
mirror of https://github.com/engineer-man/piston.git synced 2025-05-04 10:56:26 +02:00
piston/packages/rust/1.65.0/test.rs
2022-11-13 05:11:54 +00:00

8 lines
144 B
Rust

fn main() {
println!("OK");
// 1.65.0 feature
let _test = if let Some(t) = Some(1234) {
t
} else { unreachable!() };
}