shithub: mc

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