]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-fn-not-safe-for-const.stderr
Rollup merge of #72279 - RalfJung:raw-ref-macros, r=nikomatsakis
[rust.git] / src / test / ui / consts / const-fn-not-safe-for-const.stderr
1 error[E0015]: calls in constant functions are limited to constant functions, tuple structs and tuple variants
2   --> $DIR/const-fn-not-safe-for-const.rs:14:5
3    |
4 LL |     random()
5    |     ^^^^^^^^
6
7 error[E0013]: constant functions cannot refer to statics
8   --> $DIR/const-fn-not-safe-for-const.rs:20:5
9    |
10 LL |     Y
11    |     ^
12    |
13    = help: consider extracting the value of the `static` to a `const`, and referring to that
14
15 error[E0013]: constant functions cannot refer to statics
16   --> $DIR/const-fn-not-safe-for-const.rs:25:6
17    |
18 LL |     &Y
19    |      ^
20    |
21    = help: consider extracting the value of the `static` to a `const`, and referring to that
22
23 error: aborting due to 3 previous errors
24
25 Some errors have detailed explanations: E0013, E0015.
26 For more information about an error, try `rustc --explain E0013`.