shithub: mc

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