shithub: mc

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