shithub: mc

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