shithub: mc

ref: 00949c38a0f2a1dd742a0c568a53c2d68c85607b
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
}