mirror of
https://github.com/ziglang/zig.git
synced 2025-12-11 16:53:06 +00:00
15 lines
218 B
Zig
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;
|
|
}
|