shithub: mc

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