mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-10 17:07:36 +00:00
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");
|
|
}
|