shithub: mc

ref: 2500c4cf6dd9653f03fbc65aa16d6871f4986386
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)
}