shithub: mc

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