shithub: mc

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