shithub: mc

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