shithub: mc

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