shithub: mc

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