shithub: mc

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