shithub: mc

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