shithub: mc

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