mirror of
https://github.com/ziglang/zig.git
synced 2024-12-04 02:48:50 +00:00
5619ce2406
Conflicts: * doc/langref.html.in * lib/std/enums.zig * lib/std/fmt.zig * lib/std/hash/auto_hash.zig * lib/std/math.zig * lib/std/mem.zig * lib/std/meta.zig * test/behavior/alignof.zig * test/behavior/bitcast.zig * test/behavior/bugs/1421.zig * test/behavior/cast.zig * test/behavior/ptrcast.zig * test/behavior/type_info.zig * test/behavior/vector.zig Master branch added `try` to a bunch of testing function calls, and some lines also had changed how to refer to the native architecture and other `@import("builtin")` stuff.
44 lines
959 B
Zig
44 lines
959 B
Zig
const expect = @import("std").testing.expect;
|
|
|
|
test "try on error union" {
|
|
try tryOnErrorUnionImpl();
|
|
comptime try tryOnErrorUnionImpl();
|
|
}
|
|
|
|
fn tryOnErrorUnionImpl() !void {
|
|
const x = if (returnsTen()) |val| val + 1 else |err| switch (err) {
|
|
error.ItBroke, error.NoMem => 1,
|
|
error.CrappedOut => @as(i32, 2),
|
|
else => unreachable,
|
|
};
|
|
try expect(x == 11);
|
|
}
|
|
|
|
fn returnsTen() anyerror!i32 {
|
|
return 10;
|
|
}
|
|
|
|
test "try without vars" {
|
|
const result1 = if (failIfTrue(true)) 1 else |_| @as(i32, 2);
|
|
try expect(result1 == 2);
|
|
|
|
const result2 = if (failIfTrue(false)) 1 else |_| @as(i32, 2);
|
|
try expect(result2 == 1);
|
|
}
|
|
|
|
fn failIfTrue(ok: bool) anyerror!void {
|
|
if (ok) {
|
|
return error.ItBroke;
|
|
} else {
|
|
return;
|
|
}
|
|
}
|
|
|
|
test "try then not executed with assignment" {
|
|
if (failIfTrue(true)) {
|
|
unreachable;
|
|
} else |err| {
|
|
try expect(err == error.ItBroke);
|
|
}
|
|
}
|