shithub: mc

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