mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-04 09:53:04 +03:00
9 lines
105 B
Rust
9 lines
105 B
Rust
//@ check-pass
|
|
//@compile-flags: --test
|
|
|
|
#![warn(clippy::exit)]
|
|
|
|
fn main() {
|
|
std::process::exit(0)
|
|
}
|