]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/issue-64453.stderr
Auto merge of #87284 - Aaron1011:remove-paren-special, r=petrochenkov
[rust.git] / src / test / ui / borrowck / issue-64453.stderr
1 error[E0507]: cannot move out of static item `settings_dir`
2   --> $DIR/issue-64453.rs:14:37
3    |
4 LL |     let settings_data = from_string(settings_dir);
5    |                                     ^^^^^^^^^^^^ move occurs because `settings_dir` has type `String`, which does not implement the `Copy` trait
6
7 error[E0015]: calls in statics are limited to constant functions, tuple structs and tuple variants
8   --> $DIR/issue-64453.rs:4:31
9    |
10 LL | static settings_dir: String = format!("");
11    |                               ^^^^^^^^^^^
12    |
13    = note: this error originates in the macro `$crate::__export::format_args` (in Nightly builds, run with -Z macro-backtrace for more info)
14
15 error[E0015]: calls in statics are limited to constant functions, tuple structs and tuple variants
16   --> $DIR/issue-64453.rs:4:31
17    |
18 LL | static settings_dir: String = format!("");
19    |                               ^^^^^^^^^^^
20    |
21    = note: this error originates in the macro `format` (in Nightly builds, run with -Z macro-backtrace for more info)
22
23 error: aborting due to 3 previous errors
24
25 Some errors have detailed explanations: E0015, E0507.
26 For more information about an error, try `rustc --explain E0015`.