shithub: mc

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