Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
fn main() {
let f = |_||x, y| x+y;
assert_eq!(f(())(1, 2), 3);
}