shithub: mc

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