shithub: mc

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