shithub: mc

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