]> git.proxmox.com Git - rustc.git/blame - src/test/ui/pattern/usefulness/refutable-pattern-in-fn-arg.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / pattern / usefulness / refutable-pattern-in-fn-arg.stderr
CommitLineData
b7449926 1error[E0005]: refutable pattern in function argument: `_` not covered
0731742a 2 --> $DIR/refutable-pattern-in-fn-arg.rs:2:14
b7449926
XL
3 |
4LL | let f = |3: isize| println!("hello");
5 | ^ pattern `_` not covered
ba9703b0
XL
6 |
7 = note: the matched value is of type `isize`
b7449926
XL
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0005`.