shithub: mc

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