shithub: mc

ref: 2899d4b47e0a0ae380e832f4c6d345f9827ebc5a
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
}