shithub: mc

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