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