shithub: mc

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