shithub: mc

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