shithub: mc

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