shithub: mc

ref: 39562e06a87e2068d9dcd788201a2b7a6efdb7b2
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
}