shithub: mc

ref: 5904f620eea9c77d9cc7a32553b30d87b1543ae3
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
}