shithub: mc

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