shithub: mc

ref: 22dfaa6b4c03222803ae97cf4ff9401788b5d4ea
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
}