shithub: mc

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