shithub: mc

ref: 507c0dc4eb7b20d87dc7ac06316e4620057e47ab
dir: /test/zwidencast.myr/

View raw version
use std
/* should zero-extend u when casting to v, returning 99 */
const main = {
	var u : uint8
	var v : uint32
	
	u = 99
	v = u castto(uint32)
	-> v
}