shithub: mc

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