shithub: mc

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