shithub: mc

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