shithub: mc

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