shithub: mc

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