rust/tests/ui/parser/public-instead-of-pub-1.fixed

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
274 B
Rust
Raw Normal View History

// Checks what happens when `public` is used instead of the correct, `pub`
// run-rustfix
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() { }