shithub: mc

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