shithub: mc

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