mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 06:19:06 +00:00
5 lines
97 B
Rust
5 lines
97 B
Rust
//@ run-pass
|
|
|
|
|
|
pub fn main() { let x: Vec<isize> = Vec::new(); for _ in &x { panic!("moop"); } }
|