]> git.proxmox.com Git - rustc.git/blame - src/test/ui/question-mark-type-infer.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / question-mark-type-infer.stderr
CommitLineData
60c5eb7d
XL
1error[E0284]: type annotations needed
2 --> $DIR/question-mark-type-infer.rs:12:21
b7449926 3 |
532ac7d7 4LL | l.iter().map(f).collect()?
ba9703b0 5 | ^^^^^^^ cannot infer type
60c5eb7d 6 |
ba9703b0
XL
7 = note: cannot satisfy `<_ as std::ops::Try>::Ok == _`
8help: consider specifying the type argument in the method call
9 |
10LL | l.iter().map(f).collect::<B>()?
11 | ^^^^^
b7449926
XL
12
13error: aborting due to previous error
14
dc9dc135 15For more information about this error, try `rustc --explain E0284`.