]> git.lizzy.rs Git - rust.git/blob - src/test/ui/question-mark-type-infer.stderr
d32d94976451ab6791c74cda487928efd8d2c28f
[rust.git] / src / test / ui / question-mark-type-infer.stderr
1 error[E0284]: type annotations needed
2   --> $DIR/question-mark-type-infer.rs:12:21
3    |
4 LL |     l.iter().map(f).collect()?
5    |                     ^^^^^^^
6    |                     |
7    |                     cannot infer type
8    |                     help: consider specifying the type argument in the method call: `collect::<_>`
9    |
10    = note: cannot resolve `<_ as std::ops::Try>::Ok == _`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0284`.