mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:58:10 +00:00
15 lines
289 B
Rust
15 lines
289 B
Rust
// run-pass
|
|
|
|
|
|
fn test_simple() {
|
|
let r = match true { true => { true } false => { panic!() } };
|
|
assert_eq!(r, true);
|
|
}
|
|
|
|
fn test_box() {
|
|
let r = match true { true => { vec![10] } false => { panic!() } };
|
|
assert_eq!(r[0], 10);
|
|
}
|
|
|
|
pub fn main() { test_simple(); test_box(); }
|