shithub: mc

ref: 34266f6c2a32738635087821af26dd1e4f58217d
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
}