mirror of
https://github.com/typst/typst
synced 2025-05-14 17:15:28 +08:00
8 lines
166 B
Typst
8 lines
166 B
Typst
// Test that integer -> integer conversion doesn't do a roundtrip through float.
|
|
// Ref: false
|
|
|
|
---
|
|
#let x = 9223372036854775800
|
|
#test(type(x), int)
|
|
#test(int(x), x)
|