Slice cannot be returned from comptime function, LLVM const slice generation is not implemented. ``` d :: 10; jar :: fn () []s32 #comptime { return .{ len = 1, ptr = &d }; } main :: fn () s32 { j :: jar(); return 0; } ```