shithub: mc

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