mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 23:22:44 +00:00
13 lines
213 B
Zig
13 lines
213 B
Zig
const std = @import("std");
|
|
const expect = std.testing.expect;
|
|
|
|
test "coerce to optionals" {
|
|
const x: ?i32 = 1234;
|
|
const y: ?i32 = null;
|
|
|
|
try expect(x.? == 1234);
|
|
try expect(y == null);
|
|
}
|
|
|
|
// test
|