zig/test/behavior
John Schmidt 505e720421 sema: add peer type resolution for vectors
This is consistent with how coercion for vectors work. So now you can do
this:

```
var a: @Vector(2, u16) = .{1, 2};
var b: @Vector(2, u8) = .{2, 1};
const c = @min(a, b);
```

where previously you had to cast explicitly:

```
var a: @Vector(2, u16) = .{1, 2};
var b: @Vector(2, u8) = .{2, 1};
var c: @Vector(2, u16) = b;
const c = @min(a, c);
```
2023-03-09 00:55:17 +01:00
..
2023-02-21 09:43:23 -05:00
2023-02-21 15:46:34 -05:00
2023-01-02 15:02:33 -07:00
2021-10-28 17:33:05 -07:00
2023-03-05 02:59:02 -05:00
2023-03-05 02:59:02 -05:00
2022-02-13 14:42:20 +02:00
2023-03-05 02:59:02 -05:00
2022-01-07 00:06:06 -05:00
2023-01-23 13:48:36 -05:00
2023-01-31 17:01:56 +01:00
2023-02-23 00:29:23 -05:00
2022-12-29 12:42:44 +02:00
2023-03-05 02:59:02 -05:00
2023-03-05 04:25:04 -05:00
2023-02-21 09:43:23 -05:00
2023-03-05 02:59:02 -05:00
2022-12-31 20:49:02 -05:00
2023-02-23 21:25:29 -05:00