main()1 fn main() {
2     let Some(x) = Some(1) else { //~ ERROR `let...else` statements are unstable
3         return;
4     };
5 }
6