shithub: mc

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