patch because of a change in @typeInfo

This commit is contained in:
Chris Boesch 2023-01-14 15:36:36 +01:00
parent 04893c7253
commit de6b91d413
3 changed files with 3 additions and 3 deletions

View file

@ -41,7 +41,7 @@ pub fn main() void {
const fields = @typeInfo(Narcissus).Struct.fields;
??? {
if (field.field_type != void) {
if (field.type != void) {
print(" {s}", .{field.name});
}
}