shithub: mc

ref: 420aa87291660b3452f42d637227b157dbf86846
dir: /test/usedef.myr/

View raw version
use std

/*
should fail to compile because 'a' is used
before it is defined.
*/
const main = {
	var a : int
	std.exit(a)
}