mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-26 13:01:34 +03: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=
|