mirror of
https://github.com/ziglang/zig.git
synced 2025-01-05 18:00: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=
|