shithub: mc

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