shithub: mc

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