shithub: mc

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