zig/test/behavior/bugs/3586.zig
joachimschmidt557 a06e9eca45
stage2 AArch64: add more slice support
* airSlice
* airArrayToSlice
* and initial support for airSlicePtr and co
2022-03-05 11:31:51 +01:00

15 lines
218 B
Zig

const builtin = @import("builtin");
const NoteParams = struct {};
const Container = struct {
params: ?NoteParams,
};
test "fixed" {
var ctr = Container{
.params = NoteParams{},
};
_ = ctr;
}