mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 02:31:20 +00:00
9 lines
90 B
Rust
9 lines
90 B
Rust
//@ run-pass
|
|
|
|
fn f(_: &[isize]) {}
|
|
|
|
pub fn main() {
|
|
let v = [ 1, 2, 3 ];
|
|
f(&v);
|
|
}
|