shithub: mc

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