shithub: mc

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