shithub: mc

ref: 51d5a41b3f09a15fef2f427a129f877365d10bf6
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
}