shithub: mc

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