Delete some obsolete comments

This commit is contained in:
Richard Feldman 2025-11-18 22:30:17 -05:00
parent d36dd16958
commit fce813c558
No known key found for this signature in database
2 changed files with 0 additions and 6 deletions

View file

@ -468,8 +468,6 @@ pub fn main() !void {
try builtin_env.common.setNodeIndexById(gpa, f32_ident, @intCast(@intFromEnum(f32_type_idx)));
try builtin_env.common.setNodeIndexById(gpa, f64_ident, @intCast(@intFromEnum(f64_type_idx)));
// Note: Both Str and List are now nominal types (no longer transformed to primitives).
// The type system handles them directly as nominal types with special runtime support.
// Create output directory
try std.fs.cwd().makePath("zig-out/builtins");

View file

@ -113,10 +113,6 @@ test "addTypeVar - host opaque types compile to opaque_ptr" {
try testing.expectEqual(layout.Idx.opaque_ptr, box_rigid_layout.data.box);
}
// Test deleted: was using .str primitive type which no longer exists.
// .str is now a nominal type (Builtin.Str) and requires the actual Builtin module.
// Proper string layout testing requires loading the actual Builtin module.
test "addTypeVar - zero-sized types (ZST)" {
var lt: LayoutTest = undefined;
lt.gpa = testing.allocator;