MWE: ``` julia> @emulate Int3 UInt3 julia> 127 % Int3, 255 % UInt3 (-1, 0x7) julia> 128 % Int3 ERROR: InexactError: trunc(Int8, 128) [...] julia> 256 % UInt3 ERROR: InexactError: trunc(UInt8, 256) [...] ```
MWE: