]> git.proxmox.com Git - rustc.git/blame - tests/ui/consts/mir_check_nonconst.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / consts / mir_check_nonconst.stderr
CommitLineData
5099ac24 1error[E0015]: cannot call non-const fn `bar` in statics
0731742a 2 --> $DIR/mir_check_nonconst.rs:8:19
83c7162d
XL
3 |
4LL | static foo: Foo = bar();
5 | ^^^^^
5099ac24
FG
6 |
7 = note: calls in statics are limited to constant functions, tuple structs and tuple variants
f2b60f7d 8 = note: consider wrapping this expression in `Lazy::new(|| ...)` from the `once_cell` crate: https://crates.io/crates/once_cell
83c7162d 9
4b012472 10error: aborting due to 1 previous error
83c7162d
XL
11
12For more information about this error, try `rustc --explain E0015`.