shithub: mc

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