shithub: mc

ref: 427b9849fae0c94709a2ae3a43e17d5fe938ecc6
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)
}