shithub: mc

ref: 88df32c77ff6806dee396803b8a9145f53c04ae3
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
}