diff options
Diffstat (limited to 'tests/typ/text')
| -rw-r--r-- | tests/typ/text/features.typ | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/typ/text/features.typ b/tests/typ/text/features.typ index fc84514b..d60583d8 100644 --- a/tests/typ/text/features.typ +++ b/tests/typ/text/features.typ @@ -53,10 +53,18 @@ fi vs. #font(ligatures: false)[No fi] \ fi vs. #font(features: (liga: 0))[No fi] --- +// Error: 22-27 expected integer or none, found boolean +#font(stylistic-set: false) + +--- // Error: 22-24 must be between 1 and 20 #font(stylistic-set: 25) --- +// Error: 20-21 expected string or auto, found integer +#font(number-type: 2) + +--- // Error: 20-31 expected "lining" or "old-style" #font(number-type: "different") |
