]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/issue-79458.stderr
Auto merge of #87284 - Aaron1011:remove-paren-special, r=petrochenkov
[rust.git] / src / test / ui / traits / issue-79458.stderr
1 error[E0277]: the trait bound `&mut T: Clone` is not satisfied
2   --> $DIR/issue-79458.rs:6:5
3    |
4 LL | #[derive(Clone)]
5    |          ----- in this derive macro expansion
6 LL | struct Foo<'a, T> {
7 LL |     bar: &'a mut T
8    |     ^^^^^^^^^^^^^^ the trait `Clone` is not implemented for `&mut T`
9    |
10    = help: the following implementations were found:
11              <&T as Clone>
12    = note: `Clone` is implemented for `&T`, but not for `&mut T`
13 note: required by `clone`
14   --> $SRC_DIR/core/src/clone.rs:LL:COL
15    |
16 LL |     fn clone(&self) -> Self;
17    |     ^^^^^^^^^^^^^^^^^^^^^^^^
18    = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info)
19
20 error: aborting due to previous error
21
22 For more information about this error, try `rustc --explain E0277`.