shithub: mc

ref: 9186d1ce9b8e6bd1443d6c2e24f378dedbaa5a30
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
}