shithub: mc

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