shithub: mc

ref: 36232a98d2ebeb42a853493aafab51777a3f0081
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
}