shithub: mc

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