shithub: mc

ref: 0ef6733ca5602407ccec8be6242c9a9ccd7c9cac
dir: /test/declmismatch.myr/

View raw version
use std
/*
should fail to compile with a type error.
char is incompatible with int.
*/
const main = {
	var a : int
	var b : char

	a = b
}