]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/mir_check_nonconst.stderr
New upstream version 1.60.0+dfsg1
[rustc.git] / src / test / ui / consts / mir_check_nonconst.stderr
1 error[E0015]: cannot call non-const fn `bar` in statics
2 --> $DIR/mir_check_nonconst.rs:8:19
3 |
4 LL | static foo: Foo = bar();
5 | ^^^^^
6 |
7 = note: calls in statics are limited to constant functions, tuple structs and tuple variants
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0015`.