2020-02-15 22:21:00 +01:00
|
|
|
error: extern items cannot be `const`
|
|
|
|
--> $DIR/foreign-const-syntactic-fail.rs:7:11
|
|
|
|
|
|
|
|
|
LL | const A: isize;
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^
|
2020-02-15 22:21:00 +01:00
|
|
|
|
|
|
|
|
= note: for more information, visit https://doc.rust-lang.org/std/keyword.extern.html
|
2024-07-06 03:07:46 +00:00
|
|
|
help: try using a static value
|
|
|
|
|
|
|
|
|
LL | static A: isize;
|
|
|
|
| ~~~~~~
|
2020-02-15 22:21:00 +01:00
|
|
|
|
|
|
|
error: extern items cannot be `const`
|
|
|
|
--> $DIR/foreign-const-syntactic-fail.rs:8:11
|
|
|
|
|
|
|
|
|
LL | const B: isize = 42;
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^
|
2020-02-15 22:21:00 +01:00
|
|
|
|
|
|
|
|
= note: for more information, visit https://doc.rust-lang.org/std/keyword.extern.html
|
2024-07-06 03:07:46 +00:00
|
|
|
help: try using a static value
|
|
|
|
|
|
|
|
|
LL | static B: isize = 42;
|
|
|
|
| ~~~~~~
|
2020-02-15 22:21:00 +01:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|