shithub: mc

ref: 73d297264fae92c1e716f05e5f42496fad95dd37
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
}