aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/type.zig
diff options
context:
space:
mode:
authorMeghan <hello@nektro.net>2022-03-30 11:12:14 -0700
committerGitHub <noreply@github.com>2022-03-30 14:12:14 -0400
commitb73cf97c93bb23150475ac0c23aadf86dbd71bc4 (patch)
treea2b144c923c303e815502e683f75fd4a9b79bba8 /test/behavior/type.zig
parentb153e156b1d431995e7f89150c93ec05aa3966f8 (diff)
downloadzig-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.zig6
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),
});
}