shithub: mc

ref: 018b5d47a594fff5e29361b9722160f11fdcd0f2
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
}