]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/return-bindings-multi.rs
Rollup merge of #104952 - jyn514:setup, r=Mark-Simulacrum
[rust.git] / src / test / ui / suggestions / return-bindings-multi.rs
1 fn a(i: i32) -> i32 {
2     //~^ ERROR mismatched types
3     let j = 2i32;
4 }
5
6 fn b(i: i32, j: i32) -> i32 {}
7 //~^ ERROR mismatched types
8
9 fn main() {}