shithub: mc

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