]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/issue-79458.stderr
Add 'src/tools/rustfmt/' from commit '7872306edf2e11a69aaffb9434088fd66b46a863'
[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 |     bar: &'a mut T
5    |     ^^^^^^^^^^^^^^ the trait `Clone` is not implemented for `&mut T`
6    |
7    = help: the following implementations were found:
8              <&T as Clone>
9    = note: `Clone` is implemented for `&T`, but not for `&mut T`
10    = note: required by `clone`
11    = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info)
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.