]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-loan-of-static-data-issue-27616.nll.stderr
Fix a few tests with target-specific output
[rust.git] / src / test / ui / borrowck / borrowck-loan-of-static-data-issue-27616.nll.stderr
1 error[E0506]: cannot assign to `*s` because it is borrowed
2   --> $DIR/borrowck-loan-of-static-data-issue-27616.rs:26:5
3    |
4 LL |     let alias: &'static mut String = s;
5    |                                      - borrow of `*s` occurs here
6 ...
7 LL |     *s = String::new(); //~ ERROR cannot assign
8    |     ^^ assignment to borrowed `*s` occurs here
9    |
10    = note: borrowed value must be valid for the static lifetime...
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0506`.