mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
9 lines
264 B
Rust
9 lines
264 B
Rust
// Checks what happens when `public` is used instead of the correct, `pub`
|
|
// edition:2018
|
|
// run-rustfix
|
|
pub struct X;
|
|
//~^ ERROR expected one of `!` or `::`, found keyword `struct`
|
|
//~^^ HELP write `pub` instead of `public` to make the item public
|
|
|
|
fn main() {}
|