shithub: mc

ref: 990e08a754e3a4c1bd7c44a3862a167aebda63af
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
}