shithub: mc

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