rust/tests/ui/loops/for-each-loop-panic.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
135 B
Rust
Raw Normal View History

2020-04-16 15:50:32 +09:00
//@ run-fail
//@ error-pattern:moop
//@ needs-subprocess
2016-05-27 08:09:36 +05:30
fn main() {
for _ in 0_usize..10_usize {
panic!("moop");
}
}