shithub: mc

ref: 507c0dc4eb7b20d87dc7ac06316e4620057e47ab
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
}