]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-64453.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / 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` which comes from the expansion of the macro `format` (in Nightly builds, run with -Z macro-backtrace for more info)
9
10 error[E0015]: cannot call non-const fn `format` in statics
11   --> $DIR/issue-64453.rs:4:31
12    |
13 LL | static settings_dir: String = format!("");
14    |                               ^^^^^^^^^^^
15    |
16    = note: calls in statics are limited to constant functions, tuple structs and tuple variants
17    = note: consider wrapping this expression in `Lazy::new(|| ...)` from the `once_cell` crate: https://crates.io/crates/once_cell
18    = note: this error originates in the macro `format` (in Nightly builds, run with -Z macro-backtrace for more info)
19
20 error[E0507]: cannot move out of static item `settings_dir`
21   --> $DIR/issue-64453.rs:14:37
22    |
23 LL |     let settings_data = from_string(settings_dir);
24    |                                     ^^^^^^^^^^^^ move occurs because `settings_dir` has type `String`, which does not implement the `Copy` trait
25
26 error: aborting due to 3 previous errors
27
28 Some errors have detailed explanations: E0015, E0507.
29 For more information about an error, try `rustc --explain E0015`.