shithub: mc

ref: 2ac916b131229d9cc1d44d10a408cb9f49c135f9
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
}