ref: 8aa9e0ab5cb8c9e99253842f1d29422d154c3a65
dir: /test/trunccast.myr/
use std /* should truncate y when casting to x, exiting with status 15 */ const main = { var x : uint8 var y : int32 y = 9999 x = y castto(uint8) std.exit((x % 73) castto(int)) }