rust/tests/ui/traits/mutual-recursion-issue-75860.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
307 B
Plaintext
Raw Normal View History

2024-04-06 02:52:22 +00:00
error[E0275]: overflow assigning `_` to `Option<_>`
--> $DIR/mutual-recursion-issue-75860.rs:9:33
2020-12-28 07:40:58 +00:00
|
2024-04-06 02:52:22 +00:00
LL | let left = |o_a: Option<_>| o_a.unwrap();
| ^^^
2020-12-28 07:40:58 +00:00
error: aborting due to 1 previous error
2020-12-28 07:40:58 +00:00
For more information about this error, try `rustc --explain E0275`.