shithub: mc

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