shithub: mc

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