shithub: mc

ref: 645ac9298c8d9c7ffee3da6c849a389bcc9adcb2
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
}