shithub: mc

ref: 40f9a316cfacf07650558b3fa516a3c0c42e1210
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
}