rust/src/test/ui/consts/const-prop-read-static-in-const.stderr

19 lines
505 B
Plaintext
Raw Normal View History

warning: skipping const checks
2020-04-29 07:53:22 +00:00
--> $DIR/const-prop-read-static-in-const.rs:5:1
|
LL | const TEST: u8 = MY_STATIC;
2020-04-29 07:53:22 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: any use of this value will cause an error
--> $DIR/const-prop-read-static-in-const.rs:5:18
|
LL | const TEST: u8 = MY_STATIC;
| -----------------^^^^^^^^^-
| |
| constant accesses static
|
= note: `#[deny(const_err)]` on by default
error: aborting due to previous error; 1 warning emitted