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