blob: ba5d58a51d2dd928613049c31f99bae7b4cd9892 [file] [log] [blame]
error[E0015]: calls in constant functions are limited to constant functions, tuple structs and tuple variants
--> $DIR/const-fn-not-safe-for-const.rs:14:5
|
LL | random()
| ^^^^^^^^
error[E0013]: constant functions cannot refer to statics, use a constant instead
--> $DIR/const-fn-not-safe-for-const.rs:20:5
|
LL | Y
| ^
error[E0013]: constant functions cannot refer to statics, use a constant instead
--> $DIR/const-fn-not-safe-for-const.rs:25:5
|
LL | &Y
| ^^
error: aborting due to 3 previous errors
Some errors have detailed explanations: E0013, E0015.
For more information about an error, try `rustc --explain E0013`.