1 // run-rustfix
2 
3 #![warn(clippy::redundant_closure_call)]
4 #![allow(unused)]
5 
main()6 fn main() {
7     let a = (|| 42)();
8 }
9