mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-14 17:13:40 +00:00
More tests
This commit is contained in:
parent
56d2d0294b
commit
2c7093ed01
1 changed files with 3 additions and 0 deletions
|
@ -66,6 +66,9 @@ main (int argc, char **argv)
|
|||
assert (8 == hb_max (3, 8, 1, 2));
|
||||
|
||||
int x = 1, y = 2;
|
||||
hb_min (x, 3);
|
||||
hb_min (3, x, 4);
|
||||
hb_min (3, x, 4 + 3);
|
||||
int &z = hb_min (x, y);
|
||||
z = 3;
|
||||
assert (x == 3);
|
||||
|
|
Loading…
Add table
Reference in a new issue