shithub: mc

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