diff options
| author | Meghan <hello@nektro.net> | 2022-03-30 11:12:14 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-30 14:12:14 -0400 |
| commit | b73cf97c93bb23150475ac0c23aadf86dbd71bc4 (patch) | |
| tree | a2b144c923c303e815502e683f75fd4a9b79bba8 /test/behavior/type.zig | |
| parent | b153e156b1d431995e7f89150c93ec05aa3966f8 (diff) | |
| download | zig-b73cf97c93bb23150475ac0c23aadf86dbd71bc4.tar.gz zig-b73cf97c93bb23150475ac0c23aadf86dbd71bc4.zip | |
replace other uses of `std.meta.Vector` with `@Vector` (#11346)
Diffstat (limited to 'test/behavior/type.zig')
| -rw-r--r-- | test/behavior/type.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/behavior/type.zig b/test/behavior/type.zig index 65bebff946..c543d4f969 100644 --- a/test/behavior/type.zig +++ b/test/behavior/type.zig @@ -223,9 +223,9 @@ test "Type.Vector" { @Vector(0, u8), @Vector(4, u8), @Vector(8, *u8), - std.meta.Vector(0, u8), - std.meta.Vector(4, u8), - std.meta.Vector(8, *u8), + @Vector(0, u8), + @Vector(4, u8), + @Vector(8, *u8), }); } |
