shithub: mc

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