mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 19:08:20 +00:00
10 lines
161 B
Rust
10 lines
161 B
Rust
//@ run-pass
|
|
fn main() {
|
|
let data: &'static str = "Hello, World!";
|
|
match data {
|
|
&ref xs => {
|
|
assert_eq!(data, xs);
|
|
}
|
|
}
|
|
}
|