1contract C {
2    function fn() public pure {
3        (uint a,) = (1,2,3);
4        (,uint b) = (1,2,3);
5        (,uint c,) = (1,2,3,4,5);
6        (uint d, uint e,) = (1,2,3,4);
7        (,uint f, uint g) = (1,2,3,4);
8        (,uint h, uint i,) = (1,2,3);
9        (uint j,) = 1;
10        (,uint k) = 1;
11        (,uint l,) = 1;
12        a;b;c;d;e;f;g;h;i;j;k;l;
13    }
14}
15// ----
16// TypeError 7364: (53-72): Different number of components on the left hand side (2) than on the right hand side (3).
17// TypeError 7364: (82-101): Different number of components on the left hand side (2) than on the right hand side (3).
18// TypeError 7364: (111-135): Different number of components on the left hand side (3) than on the right hand side (5).
19// TypeError 7364: (145-174): Different number of components on the left hand side (3) than on the right hand side (4).
20// TypeError 7364: (184-213): Different number of components on the left hand side (3) than on the right hand side (4).
21// TypeError 7364: (223-251): Different number of components on the left hand side (4) than on the right hand side (3).
22// TypeError 7364: (261-274): Different number of components on the left hand side (2) than on the right hand side (1).
23// TypeError 7364: (284-297): Different number of components on the left hand side (2) than on the right hand side (1).
24// TypeError 7364: (307-321): Different number of components on the left hand side (3) than on the right hand side (1).
25