mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 20:46:07 +03:00
fix #101626, suggest pub instead of public for const type item
This commit is contained in:
@@ -473,6 +473,7 @@ pub fn can_begin_item(&self) -> bool {
|
||||
kw::Extern,
|
||||
kw::Impl,
|
||||
kw::Unsafe,
|
||||
kw::Const,
|
||||
kw::Static,
|
||||
kw::Union,
|
||||
kw::Macro,
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
// run-rustfix
|
||||
mod test {
|
||||
pub const X: i32 = 123;
|
||||
//~^ ERROR expected one of `!` or `::`, found keyword `const`
|
||||
}
|
||||
|
||||
fn main() {
|
||||
println!("{}", test::X);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// run-rustfix
|
||||
mod test {
|
||||
public const X: i32 = 123;
|
||||
//~^ ERROR expected one of `!` or `::`, found keyword `const`
|
||||
}
|
||||
|
||||
fn main() {
|
||||
println!("{}", test::X);
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user