shithub: mc

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