mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 00:29:23 +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");
|
|
}
|