shithub: mc

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