2022-08-23 17:02:40 +08:00
|
|
|
// Checks what happens when `public` is used instead of the correct, `pub`
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ run-rustfix
|
2022-08-23 17:02:40 +08:00
|
|
|
|
|
|
|
pub enum Test {
|
|
|
|
//~^ ERROR expected one of `!` or `::`, found keyword `enum`
|
|
|
|
//~^^ HELP write `pub` instead of `public` to make the item public
|
|
|
|
A,
|
|
|
|
B,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|