shithub: mc

ref: 9512779a27fb78fa0bfe505da59b8af681466e11
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
}