mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
14 lines
505 B
Plaintext
14 lines
505 B
Plaintext
error[E0275]: overflow evaluating the requirement `Option<_>: Sized`
|
|
--> $DIR/mutual-recursion-issue-75860.rs:11:5
|
|
|
|
|
LL | iso(left, right)
|
|
| ^^^
|
|
|
|
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`mutual_recursion_issue_75860`)
|
|
note: required by a bound in `Option`
|
|
--> $SRC_DIR/core/src/option.rs:LL:COL
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0275`.
|