shithub: mc

ref: 46d4b4ea638d8aefc0fb6b4f32413acdc20e2ce7
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
}