mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-11 08:05:12 +00:00
20 lines
679 B
Plaintext
20 lines
679 B
Plaintext
error[E0275]: overflow evaluating the requirement `for<'a> &'a mut Bar well-formed`
|
|
--> $DIR/issue-95230.rs:9:13
|
|
|
|
|
LL | for<'a> &'a mut Self:;
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`issue_95230`)
|
|
note: required by a bound in `Bar`
|
|
--> $DIR/issue-95230.rs:9:13
|
|
|
|
|
LL | pub struct Bar
|
|
| --- required by a bound in this struct
|
|
LL | where
|
|
LL | for<'a> &'a mut Self:;
|
|
| ^^^^^^^^^^^^ required by this bound in `Bar`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0275`.
|