mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-11 08:05:12 +00:00
9 lines
119 B
Rust
9 lines
119 B
Rust
#![warn(clippy::needless_return)]
|
|
|
|
fn main() {
|
|
if (true) {
|
|
// anything一些中文
|
|
return;
|
|
}
|
|
}
|