shithub: mc

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