shithub: mc

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