summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/issue-25793.stderr
blob: da3412f112d7a9e4f064966d13fca062920bf222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0503]: cannot use `self.width` because it was mutably borrowed
  --> $DIR/issue-25793.rs:4:9
   |
LL |         $this.width.unwrap()
   |         ^^^^^^^^^^^ use of borrowed `*self`
...
LL |         let r = &mut *self;
   |                 ---------- borrow of `*self` occurs here
LL |         r.get_size(width!(self))
   |           -------- ------------ in this macro invocation
   |           |
   |           borrow later used by call
   |
   = note: this error originates in the macro `width` (in Nightly builds, run with -Z macro-backtrace for more info)

error: aborting due to previous error

For more information about this error, try `rustc --explain E0503`.