shithub: mc

ref: 8cb3f72ad2c0fe747e5178b7d593380550a07f76
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
}