mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-04 02:54:00 +00:00
8 lines
92 B
Rust
8 lines
92 B
Rust
// run-pass
|
|
|
|
pub fn main() {
|
|
let x = [22];
|
|
let y = &x[0];
|
|
assert_eq!(*y, 22);
|
|
}
|