shithub: mc

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