shithub: mc

ref: 50e781702cdfa9e0c4bcb5101b9dd516029a7b52
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
}