shithub: mc

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