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