rust/tests/ui/rfcs/rfc-1937-termination-trait/termination-trait-for-str-err.rs
2025-01-23 20:51:29 +08:00

9 lines
179 B
Rust

//@ run-fail
//@ error-pattern: An error message for you
//@ failure-status: 1
//@ needs-subprocess
fn main() -> Result<(), &'static str> {
Err("An error message for you")
}