1 2 3 4 5 6 7 8 9
#![warn(clippy::needless_return)] fn main() { if (true) { // anything一些中文 return; //~^ needless_return } }