blob: 18e0fd3af1ce69530d919d4b7c2545a1d2feca59 (
plain)
1
2
3
4
5
6
7
8
|
// Checks what happens when `public` is used instead of the correct, `pub`
// edition:2018
// run-rustfix
public struct X;
//~^ ERROR expected one of `!` or `::`, found keyword `struct`
//~^^ HELP write `pub` instead of `public` to make the item public
fn main() {}
|