blob: fa53d55f5b3d7240b7dc9a97224ee00976c38c2c [file] [log] [blame]
mod A {
struct C;
}
fn main() {
A::C = 1;
//~^ ERROR: invalid left-hand side of assignment
//~| ERROR: mismatched types
//~| ERROR: struct `C` is private
}