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

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

9 lines
266 B
Rust
Raw Normal View History

// 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() {}