shithub: mc

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