shithub: mc

ref: 82eecd5a321aa3c619437a21997aa73c33c31d3c
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)
}