shithub: mc

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