rust/src/test/ui/extern-const.stderr

9 lines
227 B
Plaintext
Raw Normal View History

error: extern items cannot be `const`
--> $DIR/extern-const.rs:14:5
|
2018-02-23 03:42:32 +03:00
LL | const C: u8; //~ ERROR extern items cannot be `const`
2017-08-10 12:16:01 +01:00
| ^^^^^ help: instead try using: `static`
error: aborting due to previous error