mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 01:10:36 +00:00
9 lines
193 B
Rust
9 lines
193 B
Rust
//@ run-fail
|
|
//@ error-pattern: An error message for you
|
|
//@ failure-status: 1
|
|
//@ ignore-emscripten no processes
|
|
|
|
fn main() -> Result<(), &'static str> {
|
|
Err("An error message for you")
|
|
}
|