shithub: mc

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