shithub: mc

ref: 6c0abd35bf78b06cc3e25d36312609934e443952
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
}