11 lines
138 B
Rust
11 lines
138 B
Rust
#![allow(unreachable_code)]
|
|
|
|
//@ run-fail
|
|
//@ error-pattern:One
|
|
//@ needs-subprocess
|
|
|
|
fn main() {
|
|
panic!("One");
|
|
panic!("Two");
|
|
}
|