shithub: mc

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