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