Since Rust 1.56.0 you can run this code: ```rs fn main() { let a @ b @ c = 1; println!("{} {} {}", a, b, c); // 1 1 1 } ``` [PR](https://github.com/rust-lang/rust/pull/85305) [playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=cdec9feec18c8fc87df2ed5a1570e3bc)