1const std = @import("std");
2const expectEqual = std.testing.expectEqual;
3
4test "coercion to error unions" {
5 const x: anyerror!i32 = 1234;
6 const y: anyerror!i32 = error.Failure;
7
8 try expectEqual(1234, (try x));
9 try std.testing.expectError(error.Failure, y);
10}
11
12// test