shithub: mc

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