mirror of
https://git.proxmox.com/git/rustc
synced 2026-02-03 20:55:17 +00:00
8 lines
94 B
Rust
8 lines
94 B
Rust
//@ run-pass
|
|
|
|
|
|
#![allow(unused_mut)]
|
|
|
|
|
|
pub fn main() { let mut _v: Vec<isize> = Vec::new(); }
|