shithub: mc

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