mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 04:41:06 +00:00
12 lines
192 B
Rust
12 lines
192 B
Rust
//@ run-fail
|
|
//@ error-pattern:nonzero
|
|
//@ exec-env:RUST_NEWRT=1
|
|
//@ ignore-wasm32 no processes
|
|
|
|
use std::env;
|
|
|
|
fn main() {
|
|
env::args();
|
|
panic!("please have a nonzero exit status");
|
|
}
|