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