shithub: mc

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