shithub: mc

ref: 12b9ad5cea789d9a3fc5c6e57e556877d02bff38
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
}