enum X{ None, Option(i64) } fn main() { println!("Hello, world!"); let x = X::None; // this is fine let y = X::Some(Some(None)); // thi