shithub: mc

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