shithub: mc

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