mirror of
https://github.com/ziglang/zig.git
synced 2024-11-30 09:02:32 +00:00
af536ac343
* remove setFnTest builtin * add test "name" { ... } syntax * remove --check-unused argument. functions are always lazy now.
28 lines
494 B
Zig
28 lines
494 B
Zig
const assert = @import("std").debug.assert;
|
|
|
|
var read_count: u64 = 0;
|
|
|
|
fn readOnce() -> %u64 {
|
|
read_count += 1;
|
|
return read_count;
|
|
}
|
|
|
|
error InvalidDebugInfo;
|
|
|
|
const FormValue = enum {
|
|
Address: u64,
|
|
Other: bool,
|
|
};
|
|
|
|
fn doThing(form_id: u64) -> %FormValue {
|
|
return switch (form_id) {
|
|
17 => FormValue.Address { %return readOnce() },
|
|
else => error.InvalidDebugInfo,
|
|
}
|
|
}
|
|
|
|
test "switchProngReturnsErrorEnum" {
|
|
%%doThing(17);
|
|
assert(read_count == 1);
|
|
}
|