shithub: mc

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