shithub: mc

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