rust/tests/ui/privacy/struct-field-and-impl-expose-10545.rs
2025-07-25 20:38:54 +05:00

12 lines
179 B
Rust

//! Regression test for https://github.com/rust-lang/rust/issues/10545
mod a {
struct S;
impl S { }
}
fn foo(_: a::S) { //~ ERROR: struct `S` is private
}
fn main() {}