mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-15 14:46:47 +00:00
5 lines
96 B
Rust
5 lines
96 B
Rust
// run-pass
|
|
|
|
|
|
pub fn main() { let x: Vec<isize> = Vec::new(); for _ in &x { panic!("moop"); } }
|