shithub: mc

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