authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-07 20:47:18 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-07 20:47:18 -07:00
logb92acc4a372c771e461a7140b4ffaff5dbc80d21
tree2dc9c1b57e32ad24651af9a80143868334acaf6d
parenta8af20466999f255d83a5f0b29596b5c32ebfaa5
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

update to zig 0.16.0


1 files changed, 8 insertions(+), 2 deletions(-)

test.zig+8-2
...@@ -1,7 +1,13 @@...@@ -1,7 +1,13 @@
1const std = @import("std");1const std = @import("std");
2const icu = @import("icu");2const icu = @import("icu");
33
4// TODO: run the official test suite from unicode4// TODO: run the official tests from unicode
5test {5test {
6 std.testing.refAllDeclsRecursive(icu);6 _ = &icu.hasDerivedCoreProperty;
7 _ = &icu.hasProperty;
8 _ = &icu.hasEmojiCategory;
9 _ = &icu.age;
10 _ = &icu.eastAsianWidth;
11 _ = &icu.bidiPairedBracketType;
12 _ = &icu.toLower;
7}13}