shithub: mc

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