summaryrefslogtreecommitdiffstats
path: root/src/test/ui/tuple/wrong_argument_ice-4.rs
blob: 479bd0d819fdb921b4a59fdb1e1cc737d544afca (plain)
1
2
3
4
5
6
fn main() {
    (|| {})(|| {
        //~^ ERROR this function takes 0 arguments but 1 argument was supplied
        let b = 1;
    });
}