shithub: mc

ref: 93021acafb5a87b728ab1e528465a665f830ec77
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
}