rust/tests/ui/lint/issue-103317.fixed

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

15 lines
221 B
Rust
Raw Normal View History

2022-10-29 15:44:24 +00:00
//@ check-pass
//@ run-rustfix
#[warn(unreachable_pub)]
mod inner {
#[allow(unused)]
pub(crate) enum T {
//~^ WARN unreachable `pub` item
A(u8),
X { a: f32, b: () },
}
}
fn main() {}