]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-loan-of-static-data-issue-27616.stderr
Rollup merge of #106644 - alexcrichton:update-wasi-toolchain, r=cuviper
[rust.git] / tests / ui / borrowck / borrowck-loan-of-static-data-issue-27616.stderr
1 error[E0506]: cannot assign to `*s` because it is borrowed
2   --> $DIR/borrowck-loan-of-static-data-issue-27616.rs:16:5
3    |
4 LL |     let alias: &'static mut String = s;
5    |                -------------------   - borrow of `*s` occurs here
6    |                |
7    |                type annotation requires that `*s` is borrowed for `'static`
8 ...
9 LL |     *s = String::new();
10    |     ^^ assignment to borrowed `*s` occurs here
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0506`.