shithub: mc

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