mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
350 B
Plaintext
14 lines
350 B
Plaintext
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;
|
|
| ~~~
|
|
|
|
error: aborting due to previous error
|
|
|