mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 14:20:25 +00:00
12 lines
180 B
Zig
12 lines
180 B
Zig
const std = @import("std");
|
|
|
|
test "expect this to fail" {
|
|
try std.testing.expect(false);
|
|
}
|
|
|
|
test "expect this to succeed" {
|
|
try std.testing.expect(true);
|
|
}
|
|
|
|
// test_error=
|