main()1 fn main() { 2 (|| {})(|| { 3 //~^ ERROR function takes 0 arguments but 1 argument was supplied 4 let b = 1; 5 }); 6 } 7