shithub: mc

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