blob: cbed5e56c76c4523c42e39712d30cfc575bd2416 (
plain)
1
2
3
4
5
6
7
8
|
error: extern items cannot be `const`
--> $DIR/extern-const.rs:15:5
|
LL | const C: u8; //~ ERROR extern items cannot be `const`
| ^^^^^ help: try using a static value: `static`
error: aborting due to previous error
|