16 lines
293 B
Rust
16 lines
293 B
Rust
|
// run-rustfix
|
||
|
#![allow(dead_code)]
|
||
|
struct U <T> {
|
||
|
wtf: Option<Box<U<T>>>,
|
||
|
x: T,
|
||
|
}
|
||
|
fn main() {
|
||
|
U {
|
||
|
wtf: Some(Box::new(U { //~ ERROR cannot initialize a tuple struct which contains private fields
|
||
|
wtf: None,
|
||
|
x: (),
|
||
|
})),
|
||
|
x: ()
|
||
|
};
|
||
|
}
|