shithub: mc

ref: 09a8efbc7e59523a6df366fffee7b207f3327c68
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
}