shithub: mc

ref: 48d725508d3c6759e9560c26f87de19acd5c5b59
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)
}