shithub: mc

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