shithub: mc

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