shithub: mc

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