shithub: mc

ref: 64462bb36f34be7ab4aa1fcf7195739eb617a044
dir: /test/usedef.myr/

View raw version
use std

/*
should fail to compile because 'a' is used
before it is defined.
*/
const main = {
	var a : int
	std.exit(a)
}