shithub: mc

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