2022-07-29 19:21:30 +05:30
|
|
|
// Checks what happens when `public` is used instead of the correct, `pub`
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ edition:2018
|
|
|
|
//@ run-rustfix
|
2022-07-29 19:21:30 +05:30
|
|
|
public struct X;
|
|
|
|
//~^ ERROR expected one of `!` or `::`, found keyword `struct`
|
|
|
|
//~^^ HELP write `pub` instead of `public` to make the item public
|
|
|
|
|
|
|
|
fn main() {}
|