summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/redundant_closure_call_fixable.rs
blob: f8b9d37a5cc4e757efe2960f1a1a804a62e839cd (plain)
1
2
3
4
5
6
7
8
// run-rustfix

#![warn(clippy::redundant_closure_call)]
#![allow(unused)]

fn main() {
    let a = (|| 42)();
}