summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-13407.rs
blob: 7794be37b85079e08de0861ee16325aead98fc3e (plain)
1
2
3
4
5
6
7
8
9
mod A {
    struct C;
}

fn main() {
    A::C = 1;
    //~^ ERROR: mismatched types
    //~| ERROR: unit struct `C` is private
}