shithub: mc

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