]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type/missing-let-in-binding.fixed
Auto merge of #95977 - FabianWolff:issue-92790-dead-tuple, r=estebank
[rust.git] / src / test / ui / type / missing-let-in-binding.fixed
1 // run-rustfix
2 fn main() {
3     let mut _foo: i32 = 1;
4     let _foo: i32 = 4; //~ ERROR type ascription is experimental
5 }