rust/src/test/ui/consts/const-fn-not-safe-for-const.stderr

23 lines
673 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0015]: calls in constant functions are limited to constant functions, tuple structs and tuple variants
2018-12-25 15:56:47 +00:00
--> $DIR/const-fn-not-safe-for-const.rs:14:5
2018-08-08 12:28:26 +00:00
|
LL | random() //~ ERROR E0015
| ^^^^^^^^
error[E0013]: constant functions cannot refer to statics, use a constant instead
2018-12-25 15:56:47 +00:00
--> $DIR/const-fn-not-safe-for-const.rs:20:5
2018-08-08 12:28:26 +00:00
|
LL | Y
| ^
error[E0013]: constant functions cannot refer to statics, use a constant instead
2018-12-25 15:56:47 +00:00
--> $DIR/const-fn-not-safe-for-const.rs:25:5
2018-08-08 12:28:26 +00:00
|
LL | &Y
| ^^
error: aborting due to 3 previous errors
2018-08-08 12:28:26 +00:00
Some errors occurred: E0013, E0015.
2018-08-08 12:28:26 +00:00
For more information about an error, try `rustc --explain E0013`.