rust/tests/ui/privacy/private-unit-struct-assignment.rs
2025-07-31 21:25:49 +05:00

12 lines
201 B
Rust

//! Regression test for https://github.com/rust-lang/rust/issues/13407
mod A {
struct C;
}
fn main() {
A::C = 1;
//~^ ERROR: mismatched types
//~| ERROR: unit struct `C` is private
}