]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issue-25793.stderr
New upstream version 1.28.0~beta.14+dfsg1
[rustc.git] / src / test / ui / issue-25793.stderr
1 error[E0503]: cannot use `self.width` because it was mutably borrowed
2 --> $DIR/issue-25793.rs:13:9
3 |
4 LL | $this.width.unwrap()
5 | ^^^^^^^^^^^ use of borrowed `*self`
6 ...
7 LL | let r = &mut *self;
8 | ----- borrow of `*self` occurs here
9 LL | r.get_size(width!(self))
10 | ------------ in this macro invocation
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0503`.