]> git.proxmox.com Git - rustc.git/blame - src/test/ui/inference/cannot-infer-closure-circular.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / inference / cannot-infer-closure-circular.stderr
CommitLineData
6a06907d 1error[E0282]: type annotations needed for `Result<(), E>`
5869c6ff
XL
2 --> $DIR/cannot-infer-closure-circular.rs:7:14
3 |
4LL | let x = |r| {
923072b8
FG
5 | ^
6 |
7help: consider giving this closure parameter an explicit type, where the type for type parameter `E` is specified
8 |
9LL | let x = |r: Result<(), E>| {
10 | +++++++++++++++
5869c6ff
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0282`.