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