shithub: mc

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