about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-12491.rs
blob: 013aadadce516403eca0d171b1e733e00c6d7a9f (plain)
1
2
3
4
5
6
7
8
9
#![warn(clippy::needless_return)]

fn main() {
    if (true) {
        // anything一些中文
        return;
        //~^ needless_return
    }
}