shithub: mc

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