shithub: mc

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