shithub: mc

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