shithub: mc

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