shithub: mc

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