shithub: mc

ref: f1b64c623980598b81414f35c2d95c8d8ff7425a
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
}