summary refs log tree commit diff
path: root/src/test/ui/borrowck/issue-47215-ice-from-drop-elab.stderr
blob: 219a1fd2e7727305fb9a6cc120771abd4ec75769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0507]: cannot move out of thread-local static item
  --> $DIR/issue-47215-ice-from-drop-elab.rs:17:21
   |
LL |         let mut x = X; //~ ERROR cannot move out of thread-local static item [E0507]
   |                     ^
   |                     |
   |                     cannot move out of thread-local static item
   |                     help: consider using a reference instead: `&X`

error: aborting due to previous error

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