Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct Foo(bool);
fn foo(_: usize) -> Foo { Foo(false) }
fn main() {
match Foo(true) {
foo(x) //~ ERROR expected a pattern, found a function call
=> ()
}