shithub: mc

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