shithub: mc

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