mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 12:51:31 +00:00
10 lines
149 B
Rust
10 lines
149 B
Rust
//@ run-fail
|
|
//@ error-pattern:moop
|
|
//@ ignore-emscripten no processes
|
|
|
|
fn main() {
|
|
for _ in 0_usize..10_usize {
|
|
panic!("moop");
|
|
}
|
|
}
|