shithub: mc

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