2022-09-21 11:05:20 +00:00
|
|
|
error[E0080]: evaluation of constant value failed
|
2019-12-16 14:23:42 +00:00
|
|
|
--> $DIR/const-prop-read-static-in-const.rs:5:18
|
|
|
|
|
|
|
|
|
LL | const TEST: u8 = MY_STATIC;
|
2022-09-21 11:05:20 +00:00
|
|
|
| ^^^^^^^^^ constant accesses static
|
2019-12-16 14:23:42 +00:00
|
|
|
|
2020-05-03 12:23:08 +00:00
|
|
|
warning: skipping const checks
|
|
|
|
|
|
|
|
|
help: skipping check that does not even have a feature gate
|
|
|
|
--> $DIR/const-prop-read-static-in-const.rs:5:18
|
|
|
|
|
|
|
|
|
LL | const TEST: u8 = MY_STATIC;
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2020-03-11 15:30:09 +00:00
|
|
|
error: aborting due to previous error; 1 warning emitted
|
2019-12-16 14:23:42 +00:00
|
|
|
|
2022-09-21 11:05:20 +00:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|