shithub: mc

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