shithub: mc

ref: 2c113af58d9f63bc4f720adbb6aa8ac2cae52781
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
}