zig
Code
Branches
Tags
Commits
master
zig
/
doc
/
langref
/
enum_export.zig
Top
1
const
Foo
=
enum
(
c_int
)
{
a
,
b
,
c
}
;
2
export
fn
entry
(
foo
:
Foo
)
void
{
3
_
=
foo
;
4
}
5
6
// obj