shithub: mc

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