shithub: mc

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