mirror of
https://github.com/ziglang/zig.git
synced 2025-12-31 10:33:19 +00:00
And fix test cases to make them pass. This is in preparation for starting to pass behavior tests with self-hosted.
12 lines
168 B
Zig
12 lines
168 B
Zig
const NoteParams = struct {};
|
|
|
|
const Container = struct {
|
|
params: ?NoteParams,
|
|
};
|
|
|
|
test "fixed" {
|
|
var ctr = Container{
|
|
.params = NoteParams{},
|
|
};
|
|
}
|