shithub: mc

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