mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +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)
|
|
}
|