Use example that compiles on 32-bit arch

This commit is contained in:
Chris Smowton
2023-02-17 19:35:04 +00:00
parent be468fe122
commit c7da1c9e0d

View File

@@ -264,8 +264,8 @@ func testBoundsChecking(input string) {
_ = int16(parsed)
}
}
if parsed <= math.MaxUint32 {
_ = uint32(parsed)
if parsed <= math.MaxUint16 {
_ = uint16(parsed)
}
}
{