shithub: mc

ref: 062038c04a1cb9b7b161b670c5a3a948aaed42d1
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
}