shithub: mc

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