mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
23 lines
828 B
Plaintext
23 lines
828 B
Plaintext
error[E0308]: method not compatible with trait
|
|
--> $DIR/issue-37884.rs:6:5
|
|
|
|
|
LL | fn next(&'a mut self) -> Option<Self::Item>
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetime mismatch
|
|
|
|
|
= note: expected signature `fn(&mut RepeatMut<'_, _>) -> Option<_>`
|
|
found signature `fn(&'a mut RepeatMut<'_, _>) -> Option<_>`
|
|
note: the anonymous lifetime as defined here...
|
|
--> $DIR/issue-37884.rs:6:5
|
|
|
|
|
LL | fn next(&'a mut self) -> Option<Self::Item>
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
note: ...does not necessarily outlive the lifetime `'a` as defined here
|
|
--> $DIR/issue-37884.rs:3:6
|
|
|
|
|
LL | impl<'a, T: 'a> Iterator for RepeatMut<'a, T> {
|
|
| ^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|