shithub: mc

ref: 6c0e6856de4a72b7d6ab99a184d213b18a3dea14
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
}