shithub: mc

ref: 97836cfa040efbbbda0f6da6b8df94a4553c9709
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
}