shithub: mc

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