shithub: mc

ref: 105235911b6b3982f76f3d7e87070f696942c105
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
}