shithub: mc

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