diff options
| author | Eduardo Sánchez Muñoz <eduardosanchezmunoz@gmail.com> | 2025-03-24 19:16:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-24 18:16:33 +0000 |
| commit | 38213ed534d8a7cd520c0265b99a345bc2966b39 (patch) | |
| tree | 248bbfcead3218067e399145be10b2ef3187624e /tests/suite/model/enum.typ | |
| parent | 636eea18bc1c3fe2acb09e59e67f38a4a0c1b323 (diff) | |
Use `u64` instead of `usize` to store counter and enumeration item numbers, so behavior does not vary from 64-bit to 32-bit platforms (#6026)
Diffstat (limited to 'tests/suite/model/enum.typ')
| -rw-r--r-- | tests/suite/model/enum.typ | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/suite/model/enum.typ b/tests/suite/model/enum.typ index 7176b04e..7ee4dc20 100644 --- a/tests/suite/model/enum.typ +++ b/tests/suite/model/enum.typ @@ -134,6 +134,11 @@ a + 0. // Error: 22-28 invalid numbering pattern #set enum(numbering: "(())") +--- enum-numbering-huge --- +// Test values greater than 32-bits +100000000001. A ++ B + --- enum-number-align-unaffected --- // Alignment shouldn't affect number #set align(horizon) |
