shithub: mc

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