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

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