shithub: mc

ref: ab4d1165045bde1fc5b291368e63b0bc0dd7a75d
dir: /test/usedef.myr/

View raw version
/*
should fail to compile because 'a' is used
before it is defined.
*/
const main = {
	var a : int
	std.exit(a)
}