shithub: mc

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