shithub: mc

ref: 2fd4a5c53e2fbd67a44364a42ab5e46fb7bf62ca
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
}