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

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

15 lines
214 B
Rust
Raw Normal View History

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