shithub: mc

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