shithub: mc

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