summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/suggest-box-new.rs
blob: 2e18dba8b9fb2e4fc1ab6d24529822d88e215aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// run-rustfix
#![allow(dead_code)]
struct U <T> {
    wtf: Option<Box<U<T>>>,
    x: T,
}
fn main() {
    U {
        wtf: Some(Box(U { //~ ERROR cannot initialize a tuple struct which contains private fields
            wtf: None,
            x: (),
        })),
        x: ()
    };
}