Clemens Sielaff
Results
1
comments of
Clemens Sielaff
I've encountered a similar issue with `std.ArrayListAligned`. The code: ```zig const std = @import("std"); const Node = struct { child: ?*NodeList, }; const NodeList = std.ArrayListAligned(Node, @alignOf(Node)); pub fn main()...