mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-23 21:46:27 +02:00
8 lines
144 B
Rust
8 lines
144 B
Rust
fn main() {
|
|
println!("OK");
|
|
|
|
// 1.65.0 feature
|
|
let _test = if let Some(t) = Some(1234) {
|
|
t
|
|
} else { unreachable!() };
|
|
}
|