shithub: mc

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