bin/.lib/confy/src/confy/dependency.zig:93:60: error: type '[][]const u8' does not support array initialization syntax
if (!arg.root) return try confy.command.ArgList.create(&.{"--dep", dep.name}, trg.A.allocator());
~^~~~~~~~~~~~~~~~~~~
bin/.lib/confy/src/confy/dependency.zig:93:60: note: inferred array length is specified with an underscore: '[_][]const u8'
const ArgList = struct {
const Slice = std.ArrayListUnmanaged(T).Slice;
fn create (items :*const Slice, A :std.mem.Allocator) ArgList { ..... }
};
Extremely confused by this error ๐
What am I even supposed to do here? ๐งฉ