mirror of
https://codeberg.org/ziglang/zig
synced 2026-03-16 23:21:44 +00:00
Reverted #1628 and changed the grammar+parser of the language to not allow certain expr where types are expected
7 lines
84 B
Zig
7 lines
84 B
Zig
pub const APubEnum = enum {
|
|
One,
|
|
Two,
|
|
Three,
|
|
};
|
|
pub const size_t = u64;
|