]> git.lizzy.rs Git - rust.git/blob - src/test/ui/static/static-vec-repeat-not-constant.stderr
Rollup merge of #105970 - Ezrashaw:add-docs+test-e0462, r=GuillaumeGomez
[rust.git] / src / test / ui / static / static-vec-repeat-not-constant.stderr
1 error[E0015]: cannot call non-const fn `foo` in statics
2   --> $DIR/static-vec-repeat-not-constant.rs:3:25
3    |
4 LL | static a: [isize; 2] = [foo(); 2];
5    |                         ^^^^^
6    |
7    = note: calls in statics are limited to constant functions, tuple structs and tuple variants
8    = note: consider wrapping this expression in `Lazy::new(|| ...)` from the `once_cell` crate: https://crates.io/crates/once_cell
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0015`.