shithub: mc

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