shithub: mc

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