shithub: mc

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