shithub: mc

ref: 615d1d878c603e55120b5d4250d3173fba19f135
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
}