shithub: mc

ref: 3ec885ae37703028d40d8308bfe1a017307a5e4e
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
}