]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/return-bindings-multi.rs
Rollup merge of #106707 - ehuss:remove-dupe-sha-1, r=Mark-Simulacrum
[rust.git] / tests / 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() {}