shithub: mc

ref: 84b43b32d43fca9aa96d0f88e10093b0dfa079df
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
}