rust/tests/ui/panics/panic.rs

8 lines
95 B
Rust

//@ run-fail
//@ error-pattern:1 == 2
//@ needs-subprocess
fn main() {
assert!(1 == 2);
}