shithub: mc

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