shithub: mc

ref: 64141a6e1d3bd0c0d648563e9333d3395fd7df86
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
}