rust/src/test/ui/process/tls-exit-status.rs

12 lines
189 B
Rust
Raw Normal View History

2020-04-16 01:50:32 -05:00
// run-fail
// error-pattern:nonzero
// exec-env:RUST_NEWRT=1
// ignore-cloudabi no std::env
use std::env;
fn main() {
env::args();
panic!("please have a nonzero exit status");
}