shithub: mc

ref: 022ea933cb1ece0d00eeac4f01c8738fdd37ac91
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
}