mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
And fix test cases to make them pass. This is in preparation for starting to pass behavior tests with self-hosted.
6 lines
84 B
Zig
6 lines
84 B
Zig
pub const APubEnum = enum {
|
|
One,
|
|
Two,
|
|
Three,
|
|
};
|
|
pub const size_t = u64;
|