shithub: mc

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