all: replace all @Type usages

Co-authored-by: Matthew Lugg <mlugg@mlugg.co.uk>
This commit is contained in:
Ali Cheraghi
2025-04-30 18:42:23 +03:30
committed by Matthew Lugg
parent ce0df033cf
commit dec1163fbb
108 changed files with 629 additions and 1891 deletions
+1 -4
View File
@@ -2034,10 +2034,7 @@ test "matching captures causes struct equivalence" {
fn UnsignedWrapper(comptime I: type) type {
const bits = @typeInfo(I).int.bits;
return struct {
x: @Type(.{ .int = .{
.signedness = .unsigned,
.bits = bits,
} }),
x: @Int(.unsigned, bits),
};
}
};