aerial.nvim/tests/treesitter/zig_test.zig
2024-08-30 09:31:32 -07:00

17 lines
213 B
Zig

fn myFunc() bool {
return true;
}
const MyStruct = struct {
is_true: bool,
};
const MyTaggedUnion = union(enum) { choice1, choice2 };
test "my test" {
myFunc();
}
test ident_test {
myFunc();
}