mirror of
https://github.com/ziglang/zig.git
synced 2024-11-30 09:02:32 +00:00
c6605cba83
closes #291 This changes the error message "return value ignored" to "expression value is ignored". This is because this error also applies to {1;}, which has no function calls. Also fix ignored expression values in std and test. This caught a bug in debug.readAllocBytes where an early Eof error would have been missed. See #219.
31 lines
605 B
Zig
31 lines
605 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" {
|
|
switch (%%doThing(17)) {
|
|
FormValue.Address => |payload| { assert(payload == 1); },
|
|
else => unreachable,
|
|
}
|
|
assert(read_count == 1);
|
|
}
|