shithub: mc

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