shithub: mc

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