fix: 071 update TypeInfo field case to .int

This commit is contained in:
Arthur Solomiac 2026-01-10 10:44:25 +01:00
parent 07583db582
commit 3f9e390bcc
No known key found for this signature in database
GPG Key ID: 485D3F082E610AC3

View File

@ -12,7 +12,7 @@
// wouldn't be allowed: // wouldn't be allowed:
// //
// inline for (.{ u8, u16, u32, u64 }) |T| { // inline for (.{ u8, u16, u32, u64 }) |T| {
// print("{} ", .{@typeInfo(T).Int.bits}); // print("{} ", .{@typeInfo(T).int.bits});
// } // }
// //
// In the above example, we're looping over a list of types, // In the above example, we're looping over a list of types,