shithub: mc

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