shithub: mc

ref: 107e78e61117bdadc667fb5bdece373b90a26015
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
}