shithub: mc

ref: 458b9914044d8ddcdaea19e875a76493494b60f0
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
}