1
0
Fork 0
mirror of https://github.com/engineer-man/piston.git synced 2025-05-11 14:16:27 +02:00

pkg(rust-1.65.0): Added Rust 1.65.0

This commit is contained in:
pan93412 2022-11-13 05:11:54 +00:00
parent 961435b8cc
commit d23e41c3cd
6 changed files with 35 additions and 0 deletions
packages/rust/1.65.0

8
packages/rust/1.65.0/test.rs vendored Normal file
View file

@ -0,0 +1,8 @@
fn main() {
println!("OK");
// 1.65.0 feature
let _test = if let Some(t) = Some(1234) {
t
} else { unreachable!() };
}