1 2 3 4 5 6 7 8 9 10 11 12
const builtin = @import("builtin"); test { comptime var st = .{ .foo = &1, .bar = &2, }; inline for (@typeInfo(@TypeOf(st)).Struct.fields) |field| { _ = field; } }