rust/tests/ui/issues/issue-18566.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
418 B
Plaintext
Raw Normal View History

2018-07-16 05:11:54 +08:00
error[E0499]: cannot borrow `*s` as mutable more than once at a time
2018-12-25 23:56:47 +08:00
--> $DIR/issue-18566.rs:23:19
2018-07-16 05:11:54 +08:00
|
LL | MyPtr(s).poke(s);
| - ---- ^ second mutable borrow occurs here
| | |
| | first borrow later used by call
2018-07-16 05:11:54 +08:00
| first mutable borrow occurs here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0499`.