shithub: mc

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