]> git.lizzy.rs Git - rust.git/blob - src/test/ui/refutable-pattern-in-fn-arg.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / refutable-pattern-in-fn-arg.stderr
1 error[E0005]: refutable pattern in function argument: `_` not covered
2   --> $DIR/refutable-pattern-in-fn-arg.rs:12:14
3    |
4 LL |     let f = |3: isize| println!("hello");
5    |              ^ pattern `_` not covered
6
7 error: aborting due to previous error
8
9 For more information about this error, try `rustc --explain E0005`.