2022-09-10 19:29:38 -05:00
|
|
|
error: expected one of `!` or `::`, found keyword `const`
|
|
|
|
--> $DIR/public-instead-of-pub-3.rs:3:12
|
|
|
|
|
|
|
|
|
LL | public const X: i32 = 123;
|
|
|
|
| ^^^^^ expected one of `!` or `::`
|
|
|
|
|
|
|
|
|
help: write `pub` instead of `public` to make the item public
|
|
|
|
|
|
|
|
|
LL | pub const X: i32 = 123;
|
|
|
|
| ~~~
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-09-10 19:29:38 -05:00
|
|
|
|