shithub: mc

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