shithub: mc

ref: 490e90d2122d80bce4e5f710e046b90fc9cc31ca
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
}