]> git.proxmox.com Git - rustc.git/blob - tests/ui/mismatched_types/issue-106182.fixed
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / mismatched_types / issue-106182.fixed
1 // run-rustfix
2
3 struct _S(u32, Vec<i32>);
4
5 fn _foo(x: &_S) {
6 match x {
7 _S(mut _y, _v) => {
8 //~^ ERROR mismatched types [E0308]
9 }
10 }
11 }
12
13 fn main() {
14 }