shithub: mc

ref: 120dc534b06fd3f9611fd15b0de76ccaa5eeb53b
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
}