shithub: mc

ref: 8fda8a0adbb44f4e63bb86256d9f56700d79f301
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
}