shithub: mc

ref: 58550115b787023de68c7f760e8dd68c7d57c719
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
}