shithub: mc

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