zig/src-self-hosted/visib.zig
Andrew Kelley 687bd92f9c self-hosted: generate zig IR for simple function
no tests for this yet. I think the quickest path to testing will be
creating the .o files and linking with libc, executing, and then
comparing output.
2018-07-12 15:12:44 -04:00

5 lines
50 B
Zig

pub const Visib = enum {
Private,
Pub,
};