shithub: mc

ref: a4c065b4c05dd6ba3e8e0bb5d4bf243ee213ab5c
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
}