Files
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
316 B
Plaintext
Raw Normal View History

2024-04-05 22:52:22 -04: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-05 22:52:22 -04:00
LL | let left = |o_a: Option<_>| o_a.unwrap();
2025-03-27 16:12:00 +01:00
| ^^^^^^^^^^^^
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`.