shithub: mc

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