shithub: mc

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