mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-29 00:04:34 +00:00
9 lines
110 B
Rust
9 lines
110 B
Rust
//@ run-pass
|
|
|
|
|
|
pub fn main() {
|
|
let (&x, &y) = (&3, &'a');
|
|
assert_eq!(x, 3);
|
|
assert_eq!(y, 'a');
|
|
}
|