shithub: mc

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