shithub: mc

ref: 427b9849fae0c94709a2ae3a43e17d5fe938ecc6
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
}