shithub: mc

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